Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hiding zero figures in expression

I want to hide all 0.00 in my table . Not suppress, I need the dimension to stay as its but hide the 0.00 in the expression @ Data

dd.JPG

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You can also use a condition in your expression, like

=If( fabs( Sum(Value) )> 1E-10, Sum(Value), '')

Again, replace Sum(Value) with your expression.

This should return an empty string instead of zero.

If this is not solving your problem, please describe in more detail what your problem is.

View solution in original post

3 Replies
swuehl
MVP
MVP

Try a text color attribute expression (open the attributes by clicking on the small plus next to the expressions on expression tab):

=If( fabs( Sum(Value) )<=1E-12,White() )

replace sum(Value) with your expression

Not applicable
Author

is there another way? the white isn't really solving the problem

swuehl
MVP
MVP

You can also use a condition in your expression, like

=If( fabs( Sum(Value) )> 1E-10, Sum(Value), '')

Again, replace Sum(Value) with your expression.

This should return an empty string instead of zero.

If this is not solving your problem, please describe in more detail what your problem is.