If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
Hi,
For my example below, I selected all options (Region 1, Region 2, etc.). My KPI lists them all. However, IF ALL of the options are selected I would like this to change to saying "National" (instead of Region 1, Region 2..)
I was using:
GetFieldSelections ([Region],';',10)
Hi,
GetFieldSelections() returns 'ALL' when all fields are selected.
You can try:
If(GetFieldSelections([Region],';') = 'ALL',
'National',
GetFieldSelections([Region],';')
)
Hi,
GetFieldSelections() returns 'ALL' when all fields are selected.
You can try:
If(GetFieldSelections([Region],';') = 'ALL',
'National',
GetFieldSelections([Region],';')
)
Thanks! Appreciated.