help on a report

jgipe307

Registered User.
Local time
Today, 10:53
Joined
May 16, 2010
Messages
11
the reports are show #error on it. If the field is blank i dont need it in the report. If someone could tell me how to solve this problem i would
appreciate it. Thank you
 

Attachments

You are not testing if the date you are wanting to work with actually exists.

Use an IIF(...,True,False) statement. Also why not use DateAdd() instead of DateSerial?

=IIF(IsDate([M-4]),DateAdd("M",4,[M-4))
 

Users who are viewing this thread

Back
Top Bottom