Have a look in Access help...has clear documentation on Nz function.
If you errors are in fact due to null's (not sure if this is right or not), then the Nz function allows you to substitute any null's with a number of your choice.
Example : Nz([value],0) will change any null values in the [value] field to a zero.
Hope this helps.