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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to get list box value in Text Object

Hi,

I have attached a sample qvw where i am trying to get list box value in a text object with out using for loop.

Can anyboby help me how to achive it?

Thanks in advance.

3 Replies
Not applicable
Author

GetFieldSelections should work for multiple values or just one:

=GetFieldSelections(Attribute)


johnw
Champion III
Champion III

Or...

concat(distinct Attribute,', ')

Difference being if NOTHING is selected, getfieldselections(Attribute) will return nothing, while the above expression will return every possible value. So it depends on what you want.

Not applicable
Author

Thanks it is working for me.