Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

GetFieldSelections

I Have a listbox with entry's

Cars

Porsche

Volkswagen

Opel

Then i have a table with in the Windowname:

=GetFieldSelections(CARS,', ')

When i select all Cars, the Windowname is called "ALL".

When i select only Porsche and Opel, the window name is called NOT Volkswagen.

I want the window name with the entries i selected!

Instead of all Porsche, Volkswagen, Opel

Instead of NOT Volkswagen Porsche, Opel

1 Solution

Accepted Solutions
sunny_talwar

Try this:

=GetFieldSelections(CARS,', ', 9999999)

View solution in original post

2 Replies
sunny_talwar

Try this:

=GetFieldSelections(CARS,', ', 9999999)

rubenmarin

Or:

If(GetSelectedCount(CARS), Concat(Distinct CARS, ', '))