The NZ function is your friend here ;-)
The Nz function replaces nulls with zero by default, but can be used to
replace a null with any value/string you want. So, to display "Not
Available" if a field named RequestDate is null, you enter the expression
=Nz([RequestDate],"Not Available")
in the textbox which is displaying the [RequestDate] field.
Important Note: the textbox control must NOT be named RequestDate (its
default name if you built the form/report by drag/dropping fields, using the
wizard, ...). Ensure that it is named something like txtRequestDate. If
the textbox has the same name as the field name in the Nz expression, all it
will display is #error.
HTH,
Rob
SarahJ said:
I have a report that tracks the dates certain events happen.
i.e.
Date Request received
Date sent out
Approval date
etc...
How do I get the report to display the text "Not Available" if there is no
date recorded in the table?