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: 
Not applicable

Selected Dimensions shown in Text

Hello,

so I know how to get a Filter/Dimension that is set into a Text with concat. My Problem now is that I got a dimension where several Options are choosen (Stage = 2,3,4,5,6,7). Till now I only get the first choosen Stage, e.g. 2, but I would like to have all choosen ones.

Anyone knows How I get to this?

Thanks,

Peter

1 Solution

Accepted Solutions
MayilVahanan

Hi

Try with getfieldselections() function. Its gives the selection value for that particular field.

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

4 Replies
tresesco
MVP
MVP

You know using concat. Did you try like:

=Concat( Distinct Stage, ',')            in a textbox?

marcus_sommer

Besides concat() you could also use getfieldselections() and getcurrentselections() to show the selected dimensions and values.

- Marcus

MayilVahanan

Hi

Try with getfieldselections() function. Its gives the selection value for that particular field.

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Joop,

thanks, that works!