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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ferha_jafri
Partner - Creator III
Partner - Creator III

Not able to get all selected fields

Hello Everyone,

In this expression Concat(GetFieldSelections(Work)) I am not able to understand why this is not getting all selected values as when the selection increased 6 selections it is showing Not and then later selections and if all selctions are selected it is showing ALL , not sure whether any other function should be used.

Thank You

Ferha

5 Replies
sunny_talwar

Try this:

=GetFieldSelections(Work, ',', 9999)


Update:
here ',' is the seperater between each selected value and 9999 is telling the expression to show 9999 different values instead of showing ALL after the selection exceeds a certain count.

HTH

Best,

Sunny

avinashelite

Hi Ferha,

As per my understanding, your trying to   display the selection of the field in text box?? if you when you are selecting more values , may be due to the space constraint its showing like that....try like:

Concat(GetFieldSelections(Work),'&')


can you please share the what you getting and what the issue

ferha_jafri
Partner - Creator III
Partner - Creator III
Author

Thank You so much it is working....

sasiparupudi1
Master III
Master III

Please try

Concat(GetFieldSelections(key,',',GetSelectedCount(key)))

sunny_talwar

Awesome

I am glad I was able to help.

If you got your answer I would suggest marking correct answer as well as any helpful answers

Best,

Sunny