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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
firmographs
Partner - Contributor III
Partner - Contributor III

Creating a list in a table

We have data loaded like this, in 2 columns:

A   1

A   2

A   3

B   1

B   2

 

The output we want is this, with the values comma-separated, again in a 2-column table:

A  1,2,3

B  1,2

 

Ideally, we would achieve this, if possible, while we are creating the table rather than in the load script.  This way the list in our table cell would be generated dynamically based on filtering, etc.  

 

How would we approach this?

Labels (1)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Dimension: Col1

Measure: Concat(Col2, ',')

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Dimension: Col1

Measure: Concat(Col2, ',')

-Rob

firmographs
Partner - Contributor III
Partner - Contributor III
Author

Thanks!