Getting rid of #Error in control

PaulA

Registered User.
Local time
Today, 04:06
Joined
Jul 17, 2001
Messages
416
I am trying to rid the #Error that appears when generating a report. It appears in a control which has a count function expression when there are no records to count. I want the control to show a "0" instead of the #Error.

Not successful so far.

Any ideas?

Thanks.
 
You can use a null statement

IIF(IsNull([Field Name], "0", count([Field Name])

If I understand what you need right, this should help:)
 

Users who are viewing this thread

Back
Top Bottom