Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.