If you will use this query only within Microsoft Access, you can use the
Nz() function, for example ...
SELECT Nz([SomeField], 0) AS Whatever FROM SomeTable
However, this will only work in Microsoft Access. If you think you may need
to use the query from some other program, you can use the IIf() function
instead ...
SELECT IIf([SomeField] IS NULL, 0, [SomeField]) AS Whatever FROM SomeTable
See NZ Function and IIf Function in the help file for details.

Signature
Brendan Reynolds
> ok here's the deal i have a query that works with linked tables and
> resident
[quoted text clipped - 11 lines]
>
> Please help me, i'm kinna desperate