Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
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)
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)
What set expression you are going with? I mean which aggregate needed? Read this Set analysis and set expressions ‒ QlikView
This is exactly what Im looking for but I forgot to mention it is in QlikSense. Is this possible in QlikSense?
I do not have Qliksense, but you can give a try. I think it might work...
I think it should... I don't see why it wouldn't
It worked. Thanks everyone.
Btw I used =If(MixMatch(Continent,'Asia'),Country)