Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Selis
Contributor
Contributor

Changing The data in a table

Hi,

I have a data table consisting of two fields:
OPNAME, NAMESTRING (This field consists of names separated by the sign "|")

For example:
OP1 "ABC|ABB|CVV"
OP2 "VGB|ABB"
OP3 "GGG"
I want to reverse the table so that it appears in the following format:
OP1 ABC
OP1 ABB
OP1 CVV
OP2 VGB
OP2 ABB
OP3 GGG

Thanks to anyone who can help how to do this.

 

Labels (1)
1 Solution

Accepted Solutions
Selis
Contributor
Contributor
Author

Thanks, It's working ! 

View solution in original post

2 Replies
BrunPierre
Partner - Master
Partner - Master

Hi, load data with NAMESTRING field in this manner.

SubField(NAMESTRING, '|') as NAMESTRING 

Selis
Contributor
Contributor
Author

Thanks, It's working !