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

How to convert long table to short table

Hello,

Any one help me to do long table to short table in Qlikview . Please check the below image of scenario.

Thanks in advance.

111.PNG

1 Solution

Accepted Solutions
sunny_talwar

May be this

LOAD CUSTOMER_NUMBER,

      Concat(DISTINCT ORDER_ID, ',') as ORDER_ID

FROM ...

Group By CUSTOMER_NUMBER;

View solution in original post

4 Replies
sunny_talwar

May be this

LOAD CUSTOMER_NUMBER,

      Concat(DISTINCT ORDER_ID, ',') as ORDER_ID

FROM ...

Group By CUSTOMER_NUMBER;

sasiparupudi1
Master III
Master III

Or if you want to do this in the straight table

dimension: customer_Id

expression : concat(ORDER_ID,',')

debabrata_sahoo
Contributor III
Contributor III
Author

stalwar1‌ . Thank you.

debabrata_sahoo
Contributor III
Contributor III
Author

@Sasidhar Parupudi  Thank you for your reply.