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: 
sashak
Contributor
Contributor

I am looking to create an aggregated / consolidated table with unique rows based on a table with multiple rows for the same dimension

I am looking to create a table with unique rows, where values in one column, are concatenated into a string with the comma separator. See screenshots for reference.

Original table: 

Account Account Manager
Agency 1 Jane Smith
Agency 1 John Baker
Agency 1 Jason Green
Agency 1 Catherine Blake
Agency 5 Jessica Carter
Agency 6 Keven Wiess

Table to create:

Account Account Manager
Agency 1 Jane Smith, John Baker, Jason Green, Catherine Blake
Agency 5 Jessica Carter
Agency 6 Keven Wiess

Appreciate any suggestions.

Labels (2)
1 Solution

Accepted Solutions
seanbruton

Hi,

Please try this. Make your Account Manager Column a measure and use concat function with a distinct.

concat(distinct [Account Manager],',’ )

Regards

Sean

View solution in original post

3 Replies
seanbruton

Hi,

Please try this. Make your Account Manager Column a measure and use concat function with a distinct.

concat(distinct [Account Manager],',’ )

Regards

Sean

sashak
Contributor
Contributor
Author

Thank you, @seanbruton ! That worked.

seanbruton

@sashak I am happy it's resolved. Please could you mark the correct answer as the solution.