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

Values returned from a field

Hi,

I have two atributes named "Country" and "CountryCode". When filtering "Country" in a list object,

I would like to get the CountryCodes" associated with "Country" selections.

 

I tried to use (in a text object) the following function, but it failed:

 

= getfieldselections ( CountryCode, '; ' )

 

Any sugestion?

4 Replies
Gysbert_Wassenaar

try concat(distinct CountryCode, ';')


talk is cheap, supply exceeds demand
sivarajs
Specialist II
Specialist II

concat( CountryCode, ', ' )

Anonymous
Not applicable
Author

Thanks!

Anonymous
Not applicable
Author

Thanks!