Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

4 Replies
ashfaq_haseeb
Champion III
Champion III

In your expression

Try below

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

Regards

ASHFAQ

its_anandrjs

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

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