I have a textbox field on a report that I need to evaluate. I would like to evaluate the field to show N/A whenever the report is run and the field is null.
I cannot set the default value to N/A because it stores numbers. Is there a way to do this at the time the report is run? I tried this code with a textbox and label but with no success
If IsNull([Time]) Then Me.dtmTimeLabel.Visible = True
Time being the name of the textbox holding the numeric value and TimeLabel being the label I would to show if the textbox field is empty. Thank you
I cannot set the default value to N/A because it stores numbers. Is there a way to do this at the time the report is run? I tried this code with a textbox and label but with no success
If IsNull([Time]) Then Me.dtmTimeLabel.Visible = True
Time being the name of the textbox holding the numeric value and TimeLabel being the label I would to show if the textbox field is empty. Thank you
