Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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

Labels (1)
1 Reply
maxgro
MVP
MVP

try with

=concat(distinct field, ',')

=GetFieldSelections(field)