Link to home
Start Free TrialLog in
Avatar of napsternova
napsternovaFlag for United States of America

asked on

How to make an alias for zero on a report only

I have a report that displays zero if the value is zero.  OK, but now I need to display the zero as N/A instead of zero.  How do I do this?  One text box I have has this code as the control source.

=IIf([AskPrice]>0,[AskPrice],"")

Thanks

ASKER CERTIFIED SOLUTION
Avatar of omgang
omgang
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of napsternova

ASKER

Where would this go exactly?  Is it added to the control source?
You can add a new, unbound, Textbox control to your report and enter the expression as the ControlSource.
OM Gang
I think I actually just need to replace the control source that was there.  Thanks