Suppress Zeros in Report Fields (1 Viewer)

Solar.Paul

Registered User.
Local time
Tomorrow, 01:56
Joined
Dec 21, 2013
Messages
20
Hi I've created a report which shows zeros in various columns where there aren't any values to report. I think the report would look better and be easier to read without these zeros. I would like to suppress them and display blanks instead. I'm not sure how to do this. Can anyone help please?
 

CJ_London

Super Moderator
Staff member
Local time
Today, 16:56
Joined
Feb 19, 2013
Messages
16,685
you can either set the control format property or use conditional formatting - the former is probably quicker

To set the format property for the control use something like this - I know it works for forms, don't see why it shouldn't for reports

Code:
#;-#;"";

Alternatively, to use conditional formatting set the ForeColor to the same as the BackColor if the value=0
 

Users who are viewing this thread

Top Bottom