Null Value in reports

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report that has calculations. When a null value is in the
calculation, the report displays a '#error' message. How do I get rid of the
error and return a blank?

Thanks.
 
I have found that on Help and do not understand. Below is my calculation
that I have on control source on my form. If 'A' is null I am getting the
#error message. Do you know how I use Isnull or NZ function to return a
blank on my form/report.

=([A]+)

Thanks.
 
=(Nz(A,0) + Nz(B,0))

Pieter

Don said:
I have found that on Help and do not understand. Below is my calculation
that I have on control source on my form. If 'A' is null I am getting the
#error message. Do you know how I use Isnull or NZ function to return a
blank on my form/report.

=([A]+)

Thanks.
Jerry Whittle said:
Look into the NZ and IsNull functions in Help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top