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: 
diwakarnahata
Creator
Creator

GetFieldSelections in QlikView

Hi All,

The GetFieldSelections(field1) function gives the list of values selected in the field1, but is there any function which gives the list of values associated (in white)?

For e.g. If I select a value in Country field, can I get the list of Cities associated with that country using any function?

The GetPossibleCount() function gives the count of values associated but not values.

Thanks,

Diwakar

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Or, simply:

Concat( Distinct City, ',')

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

You can do:

concat({$ <field1={'$(=getfieldselection(field1))'}>} city)

let me know

tresesco
MVP
MVP

Or, simply:

Concat( Distinct City, ',')

diwakarnahata
Creator
Creator
Author

Perfect!!! Thanks a ton..