Solved In the report display only value <>0 and blank for value = 0

Sokkheng

Member
Local time
, 03:49
Joined
Jul 12, 2023
Messages
40
In my report some field value = 0 and some value <>0, But now i want to display only value that <> 0 and value = 0 is blank, because i don't mess with 0 value.
Thanks for help.
 
Replace 0 with NULL, ideally right at the beginning. The value 0 does not fall from the sky.
 
Value = 0 is blank makes no sense.

I think you want Value Is Null
 
Value = 0 is blank makes no sense.

I think you want Value Is Null
Thanks for your reply, and how to replace value = 0 with blank, or how we can make conditional format if the value = 0 is change font color to white (only hide with white color) in the report.
 
Thanks for your reply, and how to replace value = 0 with blank, or how we can make conditional format if the value = 0 is change font color to white (only hide with white color) in the report.
Value Is 0

Try that in your CF condition and change the font color to white.
 
You could also use the format property of the textbox and show nothing at 0.
 

Users who are viewing this thread

Back
Top Bottom