nz function error
Excel doesn't recognize the nz function used in Access queries. I can have a query that runs fine in Access (using the nz function) but when opened from Excel it's not recognized. Is there a reference I can add to make these work, or do I have to rewrite all my sql using an if isnull call instead.
nz(x.FieldName,0) is cleaner than if(isnull(x.FieldName),0,x.FieldName)
Thanks,
Brian
|