Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Variable windown titles - mulitple select option

We have set up an option to change the window titles depending on selection. So, if sales ppl select their own country it will show the selection name e.g. 'United Kingdom'. We have subregions and regions too so have used the following:

=if(IsNull(COUNTRY),if(isnull([SUB-REGION]),REGION,[SUB-REGION]), COUNTRY)

However I'd like to be able to see mutiple selections (e.g. if someone chooses UK and Ireland). How do I do this?

I've tried GETSELECTEDCOUNT and GETCURRENTSELECTIONS with no luck so far.

Can anyone advise?window title.PNG

1 Reply
maxgro
MVP
MVP

try with

=concat(distinct field, ',')

=GetFieldSelections(field)