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 concate single Colum values

this is input

Customer IDLocation
101India
101USA
102USA
103UK
104Germany
104UK
104India


i want output like that o/p:

Customer IDLocation
101India,USA
102USA
103UK
104Germany,UK,India


please let me know do this output , can u provide the script?

Regards,

Satya

1 Solution

Accepted Solutions
pover
Partner - Master
Partner - Master

Satya,

Use the concat() function as an expression in your chart.

concat(Location,', ')

Regards.

View solution in original post

3 Replies
pover
Partner - Master
Partner - Master

Satya,

Use the concat() function as an expression in your chart.

concat(Location,', ')

Regards.

Not applicable
Author

Hi,

really great, now it is working thanks for your inputs.

Regards,

Satya

martinpohl
Partner - Master
Partner - Master

try this:

load

[CUSTOMER ID],

concate (Location,', ') as ConcatLocation

resident loadedtable;

Regards