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: 
juandevqlik
Contributor III
Contributor III

Show multiple values as a text

Hello,

I have a dimension vProduct = ("Car", "Truck", "Motorbike") inside a filter and i would like to show the result of options selected in a text box.

When the user press car, it appears car, but when i pressed more than 1 option, the textbox is empty, how can i print it?

I would like to see like a list, is it posible this solution?

 

4 Replies
Or
MVP
MVP

You'll have to concatenate the values using Concat() or apply some other function to tell Qlik how to handle multiple values, such as GetFieldSelections().

As an unrelated aside, it's usually not the best idea to name your dimensions vSomething, as the lowercase v is usually used to indicate a variable.

juandevqlik
Contributor III
Contributor III
Author

How can i use concat() in this context? 

Thanks fr the advice of the variables 🙂 im learning how to do it now

Or
MVP
MVP

Concat(vProduct) should work, I think. Check the documentation for Concat() for the full syntax.

vinieme12
Champion III
Champion III

just use

=GetfieldSelections(fieldname)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.