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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

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

tresB
Champion III
Champion III

Or, simply:

Concat( Distinct City, ',')

diwakarnahata
Creator
Creator
Author

Perfect!!! Thanks a ton..