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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
nenadvukovic
Creator III
Creator III

How not to show lines with 0 in specific columns in a pivot table in a dynamic app?

Hi, I welcome any idea. Thanks

2014-08-01_11-55-11.png

1 Solution

Accepted Solutions
Not applicable

with a custom dimension:

if( aggr(sum(Value),Dimension)<>0,Dimension)

and check the Suppress if null flag.

View solution in original post

2 Replies
Not applicable

with a custom dimension:

if( aggr(sum(Value),Dimension)<>0,Dimension)

and check the Suppress if null flag.

MayilVahanan

Hi

Try with if condition or set analysis in expressions something like this

= if(Sum(Sales) > 0, Sum(Sales))

or

Sum({<Dimension = {"=Sum(Sales)> 0"}>}Sales)

Here Dimension represents the first dimension in the pivot table.

Need to include in all the expression.

Or

Try with calculated dimension.

if( aggr(sum(Sales),Dimension)>0,Dimension)

and check the Suppress if null flag.

Again u need to include in all dimension.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.