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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Filtering data in a pivot table

Hi Team - I have a pivot table with three dimensions and two calculated fields. I would like to filter out the records where Order Count <5. Since this is a pivot Chart, so the filtering should be dynamic.

Any help would be appreciated - Thanks

Customer NameShip IDWarehouse IDCase CountOrder Count
ALBERTSONS, INC.301061012,1528
ALBERTSONS, INC.301211013,5946
ALBERTSONS, INC.301214878502
ALBERTSONS, INC.3013010120,67646
ALBERTSONS, INC.302581018,5505
ALDI/BATAVIA #440181361016,4004
ALDI/BATAVIA #4401813645301
ALDI/BATAVIA #44018136484113,08972
ALDI/BATAVIA #440300431011,6001
ALDI/BATAVIA #440300434531,5101
ALDI/BATAVIA #4403004348468,68643
ALDI/BATAVIA #440300624844081
ALDI/BATAVIA #440300644539,8564
ALDI/BATAVIA #440448331014,8003
ALDI/BATAVIA #440448334564081
ALDI/BATAVIA #440448334844081
ALDI/BATAVIA #440485131011,6001
ALDI/BATAVIA #4404851345620,49714
ALDI/BATAVIA #4404851348442,81227
ALDI/BATAVIA #4404898045330,91217
ALDI/BATAVIA #4404988345312,7849
ALDI/BATAVIA #440498834841,6021
ALDI/BATAVIA #440506034561,6001
1 Reply
johnw
Champion III
Champion III

If your expressions are this:

count(Case)
count(Order)

Then I'd probably do this:

if(count(Order)>=5,count(Case))
if(count(Order)>=5,count(Order))

But that filtering doesn't seem very dynamic. What do you MEAN by dynamic filtering? That the user can set the lower limit for display? For that, I'd user a slider for a variable, and do the same expression but with a variable replacing the 5.

Another approach to dynamic filtering that I think would work would be a list box with this expression:

aggr(sum(Count),"Customer Name","Ship ID","Warehouse ID")

That would give you a list if the order counts, and you could select the counts you wanted to see.

If none of that is what you meant, can you clarify?