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

table requirement


Hi,

   How to remove row in straight and pivot table, if the Amount column has Zero values.

Thanks,

MLNR

Labels (1)
4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

If Amount is the only expression then in Presentation check the box "Suppress Zero Values" otherways tell me more about dimensions and expressions

its_anandrjs
Champion III
Champion III

Hi,

In the Expression use conditional option and write

Ex:-

Suppose your expression is Sum(Amt)

if(Sum(Amt) =0,0,1)

conditionaldd.png

Regards

Anand

its_anandrjs
Champion III
Champion III

And if it is dimension then write

Ex:-

Click on Enable conditional

if(IsNull(Amt ) = 0,0,1)

Regards

Anand

Anonymous
Not applicable
Author

Hi,

for pivot table you can restrict in expression-Conditional: (=sum(Sales)>0).

In straight table Presentation- condition: if(Sum(Actual)>0,1,0)

Regard

Arun