Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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