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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
agni_gold
Specialist III
Specialist III

Suppress 0 rows for specific rows

Hi Friends,

I have one situation, I have one pivot table and in which one column is from inline table and wrote expression for each measure, now I only want to suppress those rows which are fully zero for all measures like below screen shot, how can I achieve this

Data for Suppress Issue.png

4 Replies
effinty2112
Master
Master

Hi Agnivesh,

If Suppress Zero Values is checked in the Presentation tab that should hide dimension values where both measures are zero. If one measure is non-zero the dimension values will still be shown.

Country State Variety  
AA1GreenSum(Amount)19
Sum(Value)2
OrangeSum(Amount)2
Sum(Value)0
RedSum(Amount)1
Sum(Value)0
YellowSum(Amount)4
Sum(Value)24
A2GreenSum(Amount)25
Sum(Value)14
OrangeSum(Amount)5
Sum(Value)22
BB1GreenSum(Amount)22
Sum(Value)24
OrangeSum(Amount)21
Sum(Value)0
B2GreenSum(Amount)25
Sum(Value)0
OrangeSum(Amount)24
Sum(Value)11
YellowSum(Amount)26
Sum(Value)0

Regards

Andrew

agni_gold
Specialist III
Specialist III
Author

thanks,

but when we doing pivoting over measure field , then this is not happening .

Anil_Babu_Samineni

May be this?

=Pick(Match(Measure,'One','Two'),

If(sum(Value)>0,Aggr(sum(Value),Country, State,Variety, Measure, Year)),

If(sum(Amount)>0,Aggr(sum(Amount),Country, State, Variety,Measure, Year))

)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
agni_gold
Specialist III
Specialist III
Author

i tried this option also but not working