Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I would love to know the best way to do a filter in an table object Qlik Sense
I want to show lines only if - for example
Age | Name | Adress | Country
Only lines for FR Country without using an if condition - must use a Set analysis
Thanks a lot !
You can try this as your dimension
Aggr(
Only({<Country = {'FR'}>} Country)
, Country)
Hi
Try like below
Dim: Age , Name , Adress
Exp: Only({<Country={'FR'}>}Country)
or
It depends on ur expr.
Dim: Age , Name , Adress, Country
Exp: Sum({<Country={'FR'}>}Sales)
I tried with this syntax : Only({<Country={'FR'}>}Country) in the expression space (field dimension > Country), it doesn't work like this
INVALID DIMENSION
Am I writing this expression in the write space ? Where do you put it ?
Thanks for your answer !
It's working with an IF expression but I would to avoid to use it
=if([COUNTRY]='FR', [COUNTRY], null())
if this can help u
HI
You want to mention in the expression
Yes, where else if not ?
You can try this as your dimension
Aggr(
Only({<Country = {'FR'}>} Country)
, Country)