Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to merge 2 or more tupels to one?

Hello everybody,

I'm new to QlikView and I have a problem for which I couldn't find Informations with Google.

I have a table like this:

Column AColumn B
1a
1b
1c
2a
2e
2f

Column AColumn B
1

a

b

c

2

a

e

f

I just want to convert the text values in B for each value in A to one row. Any Idea?

3 Replies
marcus_sommer

Try it with:

load [Column A], concat([Cloumn B], chr(10), recno()) as [Column B]

from YourSource group by [Column A];

- Marcus

muthukumar77
Partner - Creator III
Partner - Creator III

Hi,

Refer this app.

Muthukumar Pandiyan
Not applicable
Author

Directory;

test:

LOAD Id,

       Concat(distinct Name ,',') as Name

   

       FROM

[..\Multiple_into_single.xlsx]

(ooxml, embedded labels, table is Sheet1) Group By Id;