Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
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

GetFieldSelections(ParticularField, '-', 999)


talk is cheap, supply exceeds demand
Not applicable
Author

Thank to all