Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change output

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
I have a value in my report that equals zero. How can I hide this value where it will not show anything for it:

Current output:

fieldname
-----------
0

I want this output:

fieldname
-----------




Can some advise what property or what I need to change to get this output in my Access Report??
 
Try an IIf

=IIf([Value]=0,"",[Value])
 
If my fieldname is proj_id then I would put this in my criteria part column for proj_id in the Properties/report Record source?? I tried this and it gives me an error message.
I also tried puttin it in the control source of field but still not working.
Please advise>


IIf([proj_id]=0,"",[proj_id])
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top