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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create comma-delimited list / combine row values

Suppose I have a COLORS table with these values that I load into QlikView:

RED
YELLOW
BLUE
GREEN

How can I turn it into a comma delimited list, for example;

RED,YELLOW,BLUE,GREEN

(similar to what is discussed here) http://www.sqlbook.com/SQL/Create-comma-delimited-list-27.aspx

Suggestions? Is there a function that does this? Thanks in advance.

1 Solution

Accepted Solutions
Not applicable
Author

In an expression, you can use Concat.

=concat(Color, ', ')


View solution in original post

2 Replies
Not applicable
Author

In an expression, you can use Concat.

=concat(Color, ', ')


Not applicable
Author

Perfect - thanks.