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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
rvijayanth
Creator
Creator

Can I apply a set expression to a filter pane?

Can I apply a set expression to a filter pane?

I have a country column and continent column:

I want to use Country as a filter but only show Countries from ASIA. Is it possible?

1 Solution

Accepted Solutions
trdandamudi
Master II
Master II

In a list box expression you can use any one of the expression:

=Aggr(Only({<Continent = {'Asia'}>} Country), Country)

OR

=If(MixMatch(Continent,'Asia'),Country)

View solution in original post

6 Replies
trdandamudi
Master II
Master II

In a list box expression you can use any one of the expression:

=Aggr(Only({<Continent = {'Asia'}>} Country), Country)

OR

=If(MixMatch(Continent,'Asia'),Country)

Anil_Babu_Samineni

What set expression you are going with? I mean which aggregate needed? Read this Set analysis and set expressions ‒ QlikView

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
rvijayanth
Creator
Creator
Author

This is exactly what Im looking for but I forgot to mention it is in QlikSense. Is this possible in QlikSense?

trdandamudi
Master II
Master II

I do not have Qliksense, but you can give a try. I think it might work...

sunny_talwar

I think it should... I don't see why it wouldn't

rvijayanth
Creator
Creator
Author

It worked. Thanks everyone.

Btw I used =If(MixMatch(Continent,'Asia'),Country)