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: 
alexprost
Contributor II
Contributor II

Zero-sum in simple table graphics

Hi,

How can I display a row in a simple table graphic when expression equals zero  ?

I build a simple qlikview sample to illustrate:

- An inline table loads data with name and amount

- A simple table graphic displays name and sum(amount)

When sum equals zero, the row is deleted.

Can anyone help me ?

Thanks

Alexandre

Labels (1)
1 Solution

Accepted Solutions
kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

Go to Properties-> presentation -> then uncheck suppress zero-value.

Find the attached file

View solution in original post

4 Replies
sushil353
Master II
Master II

hi,

goto presentation tab and uncheck supress zero value option.

HTH

Sushil

kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

Go to Properties-> presentation -> then uncheck suppress zero-value.

Find the attached file

Not applicable

dimension check supress null value.

and expression write

if(sum(amount)=0,'',sum(amount))

alexprost
Contributor II
Contributor II
Author

Thanks a lot for your quick answers !!!