Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

splitting single row into multiple values

Hi

I need to split a single row into multiple rows based on the Values present in the Name field. If there is enter in a row i.e . chr(13) the ticket needs to be shown as a separate row

Attaching a screenshot of the current vs desired table. Is it possibel to use subfield with chr(13)?

1 Solution

Accepted Solutions
sunny_talwar

May be it is Chr(10)

SubField(Name, Chr(10))

or

SubField(Name, Chr(13))

or

SubField(Name, Chr(13)&Chr(10))

UPDATE: You are trying to do this in the script right?

View solution in original post

2 Replies
sunny_talwar

May be it is Chr(10)

SubField(Name, Chr(10))

or

SubField(Name, Chr(13))

or

SubField(Name, Chr(13)&Chr(10))

UPDATE: You are trying to do this in the script right?

Anonymous
Not applicable
Author

yes,,chr(10) worked