Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Get All Values in a Field

Hi guys!

I'm new to QlikView and got a question here:

I have a field contain cities:

Cities
Jakarta
New York
Melbourne
Madrid
Tokyo
Prague

and I select two of them (New York and Melbourne😞

Cities
Jakarta
New York
Melbourne
Madrid
Tokyo
Prague

I know I can get selected values using GetFieldSelections() function.

But how to get all field values (including selected) so that it will return (Jakarta, New York, Melbourne, Madrid, Tokyo and Prague)?

Thanks in advance!

A

1 Solution

Accepted Solutions
kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

Try this

EX: =Concat(DISTINCT {1} Cities,',')

View solution in original post

3 Replies
Sokkorn
Master
Master

Hi Adrian,

May be this one you looking for =Concat({1} Cities,',')

Regards,

Sokkorn

kumarnatarajan
Partner - Specialist
Partner - Specialist

Hi,

Try this

EX: =Concat(DISTINCT {1} Cities,',')

Not applicable
Author

Thank you Sokkorn and Kumar!

Yes I want to distinct the result too.