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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
salto
Specialist II
Specialist II

Convert row in three rows

Hello Community!

Long time no see... hope you all are well.

I have this question: I need to convert this table:

RowNoTotaling
BS01002100|2200|2300

Into this one:

RowNoTotaling
BS01002100
BS01002200
BS01002300

Any help would be very appreciated.

Thanks in advance!

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Use below in script
Subfield(Totalling,'|') AS Totallng

Something like below

Load

     RowNo,

     Subfield(Totalling,'|') AS Totallng

From.....

View solution in original post

3 Replies
MK_QSL
MVP
MVP

Use below in script
Subfield(Totalling,'|') AS Totallng

Something like below

Load

     RowNo,

     Subfield(Totalling,'|') AS Totallng

From.....

tresesco
MVP
MVP

Load

          RowNo,

          SubField(Totaling, '|') as Totaling

From <>;

salto
Specialist II
Specialist II
Author

Many thanks to both of you!

I only could mark the first one as correct, but both are perfect.

Thanks again.