Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help in script

hi,

i have a table such as given below

Column 1Column 2
1x,y,z
2a,b,c

and i want to transform it into

Column 1Column 2
1x
1y
1z
2a
2b
2c

thanks in advance

1 Solution

Accepted Solutions
Gysbert_Wassenaar

LOAD

     [Column 1],

     SubField([Column 2],',') as [Column 2]

FROM   

     ...source...

     ;



talk is cheap, supply exceeds demand

View solution in original post

3 Replies
Gysbert_Wassenaar

LOAD

     [Column 1],

     SubField([Column 2],',') as [Column 2]

FROM   

     ...source...

     ;



talk is cheap, supply exceeds demand
yadhunandhanan
Partner - Contributor III
Partner - Contributor III

Hi Nishit,

Use below attachment. Hope its help.

Thanks gwassenaar

Anonymous
Not applicable
Author

Hi

Please find attached

Hope it helps !