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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Write values in rows

Hello Community,

my example shows the problem. I have 4 values in a line/row.

I want to write them in 4 rows / lines. How can i realize this? Thanks for your help!

best regards,

Aylin

1 Reply
swuehl
MVP
MVP

You can use the subfield() function to do that, like

LOAD *,

          subfield(C1,'/') as row

INLINE [

    C1

    "A90 / test / , A100 / test2"

];