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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show in a text object more selected values

Hello to all.

How can I do to show in a text object a number of selected values.

For example:

if a selection I extracted more values of a particular field (1, 3, 6, 11)

how can I do to make it appear in a text object the string

Selected Employee: 1-3-6-11

   Thank To ALL

1 Solution

Accepted Solutions
sunny_talwar

May be this:

GetFieldSelections(FieldName, '-')

or

Concat(DISTINCT FieldName, '-')

View solution in original post

4 Replies
sunny_talwar

May be this:

GetFieldSelections(FieldName, '-')

or

Concat(DISTINCT FieldName, '-')

marcus_sommer

You could use concat() for it like: concat(distinct YourField, '-').

- Marcus

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

GetFieldSelections(ParticularField, '-', 999)


talk is cheap, supply exceeds demand
Not applicable
Author

Thank to all