Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
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.