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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Dayna
Creator II
Creator II

Showing multiple values in one field

Hello All,

I have a straight table that shows information for a sales order, but the item may belong to more than one site.. Within QV, if the row has more than one value it produces a null ( - ) value in the cell. I would like to concatenate the values and show both.. How would I do this?

Any help you could provide would be appreciated!!

Many thanks,
Dayna

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Dayna,

You can use the Concat() aggregation function so

Concat(DISTINCT FieldWithMultipleValues, ',')


Hope that helps

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Hello Dayna,

You can use the Concat() aggregation function so

Concat(DISTINCT FieldWithMultipleValues, ',')


Hope that helps

Dayna
Creator II
Creator II
Author

Perfect!! Thank you!!