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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
dmohanty
Partner - Specialist
Partner - Specialist

?

..

3 Replies
tresesco
MVP
MVP

Load

          ID,

          Concat(Region) as Region

From <> Group By ID;

its_anandrjs
Champion III
Champion III

Use Concat function and Load your table with the aggregate table

tmp:

LOAD * Inline

[

ID, Region

1, A

1, B

1, C

2, X

2, Y

2, Z

3, M

3, N

4, D

5, E

];

NoConcatenate

Fival:

LOAD

ID,

Concat(Region) as Region

Resident tmp

Group By ID;

DROP Table tmp;

ashfaq_haseeb
Champion III
Champion III

Hi try below

temp:

LOAD * Inline [

ID,Region

1,A

1,B

1,C

2,X

2,Y

2,Z

3,M

3,N

4,D

5,E

];

NoConcatenate

Load

          ID,

          Concat(Region) as NewRegion

resident temp

Group By ID;

drop Table temp;

Regards

ASHFAQ