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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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!