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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

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
Champion III
Champion III

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
Champion III
Champion III

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.