Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
daniel_f
Creator
Creator

Marge / concatenate the field data

Hi All,

How can I Marge / concatenate the data from a field horizontally like below example:

Now I have the data like that: (tablebox)

OrderInvoice
1111112

13

14
2222215

16

17
3333318

19

20

And I want to transform the data like that (tablebox):

Ordersinvoices
1111112 ; 13 ; 14
2222215 ; 16 ; 17
3333318 ; 19 ;20

Which is the right function to flat the data?

Thanks in advance,

Dany

1 Solution

Accepted Solutions
Gysbert_Wassenaar

The concat function: concat(Invoice,' ; ') if used in a chart with Order as dimension.

Or in the script:

load Order, concat(Invoice,' ; ') as invoices

from ...mysource...

group by Order;


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

The concat function: concat(Invoice,' ; ') if used in a chart with Order as dimension.

Or in the script:

load Order, concat(Invoice,' ; ') as invoices

from ...mysource...

group by Order;


talk is cheap, supply exceeds demand
daniel_f
Creator
Creator
Author

Thank you Gysbert, it was exactly what i needed !