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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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 !