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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
antodina
Contributor
Contributor

Filter a pivot table based on the calculated %

Hello everyone, I would need to filter a pivot table based on the calculated% result in the table. The result I would like to obtain is to display only the records for which the calculated field of the discount percentage is greater than 60%. Thanks in advance to those who can help me. Antonio

1 Solution

Accepted Solutions
ogautier62
Specialist II
Specialist II

Hi,

you need aggr with something like that :

if(aggr( your calcul of discount percentage,Item) > 60,Item)

with not display null values

regards

View solution in original post

2 Replies
ogautier62
Specialist II
Specialist II

Hi,

you need aggr with something like that :

if(aggr( your calcul of discount percentage,Item) > 60,Item)

with not display null values

regards

antodina
Contributor
Contributor
Author

thanks

best regards