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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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)?

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

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
MVP
MVP

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