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

Row to Column

Hi,

how I can change the string value "3,4,5" to one column?

Thank you

1 Solution

Accepted Solutions
MayilVahanan

HI

Try like this

LOAD SubField(ID, ',') AS ID INLINE [

    ID

    1

    2

    "3,4,5"

    6

    "7,8"

];

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI

Try like this

LOAD SubField(ID, ',') AS ID INLINE [

    ID

    1

    2

    "3,4,5"

    6

    "7,8"

];

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
awhitfield
Partner - Champion
Partner - Champion

Hi Hans,

try this:

Tabelle:

Load SubField(ID, ',') as ID INLINE [

    ID

    1

    2

    "3,4,5"

    6

    "7,8"

];

Andy