In a a query with a series of number fields, I have a mathematical expression that detects a variance if this equation does not add up to zero. If however one of those fields is left blank, its null value results in a null value for the expression. I have tried using the following in the criteria line for those number fields:
IIf(IsNull([x]),0,[x]), where x is the field name.
I have read about the Nz function but do not understand enough about building code to know how to use it.
Thanks for your help in advance.
Jeffrey Embrey
IIf(IsNull([x]),0,[x]), where x is the field name.
I have read about the Nz function but do not understand enough about building code to know how to use it.
Thanks for your help in advance.
Jeffrey Embrey