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

separate table field

hi

i have a table like below:

idA
1001,2,3,4
2002,5,6

i want to convert it to a table like below:

idA
1001
1002
1003
1004
2002
2005
2006

what can i do?

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Where you are expecting? If script may be this?

LOAD ID, SubField(A,',') as A;

LOAD ID,

      A

FROM

<Source>

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

1 Reply
Anil_Babu_Samineni

Where you are expecting? If script may be this?

LOAD ID, SubField(A,',') as A;

LOAD ID,

      A

FROM

<Source>

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful