Formating 0.00 to blank

  • Thread starter Thread starter sdeep_us
  • Start date Start date
S

sdeep_us

Guest
Hi,

I want to change the format im my report for the value 0 to blank(null) and also 0.00 to blank(null).

Please let me have the custom formats for the same

Thanks
Sandeep
 
You can try

In Control Source on field name you want to display as null where fldname is the name of your field:

If([fldname]=0.00,"",[fldname])

or

If([fldname]=0,"",[fldname])

Prob better ways to do this but this should work.
 

Users who are viewing this thread

Back
Top Bottom