Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to concatinate records goroupping by value

Hello!

I new in qlik community and I apologize for the trivial question.


I have dataset:

1a
1b
1c
2a
2f
3c
3m

And I need to get:

1a, b, c
2a, f
3c, m

How can I do it in data loader?

Thank you very much.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

In the LOAD script, use a LOAD with an aggregation function and a GROUP BY clause, like

LOAD

    YourNumericFieldName,

    Concat( YourCharFieldName, ', ') as ConcatenatedChars

FROM ....

GROUP BY YourNumericFieldName;

View solution in original post

4 Replies
MarcoWedel

Concat - chart function ‒ QlikView

hope this helps

regards

Marco

swuehl
MVP
MVP

In the LOAD script, use a LOAD with an aggregation function and a GROUP BY clause, like

LOAD

    YourNumericFieldName,

    Concat( YourCharFieldName, ', ') as ConcatenatedChars

FROM ....

GROUP BY YourNumericFieldName;

Anonymous
Not applicable
Author

It works!

Thank you very much!

Anonymous
Not applicable
Author

This is a very useful article/

Thanks!