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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to remove zero value in straight table?

Hi,

emp   id    sal

                    0

a          1      3

b           2     5

c            3     7

i used straight table

iam getting 0 in first column

i user suppress ,missing values in property tab but still iam getting 0

please help

Labels (1)
4 Replies
ashfaq_haseeb
Champion III
Champion III

In your expression

Try below

If(sum(sal)>0,sum(sal))

Regards

ASHFAQ

its_anandrjs
Champion III
Champion III

Can you explain what expression you use.

hannan_t
Partner - Contributor III
Partner - Contributor III

In dimension tab check the box "Suppress where the values are null"

its_anandrjs
Champion III
Champion III

Try with

If( sal > 0 , Sum(sal))

Or

If(Sum(sal) > 0 , Sum(sal))

Or you can try with suppress values form option chart properties >> Presentation >> Suppress Zero-Values

SuppressO.png