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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Saro_2306
Contributor II
Contributor II

Separating Values while lookup

Input:
load * Inline [
Col1, place

1,Area/Club

2,District

3,Country/Street
];

TAB2:
Load * Inline [
Col1
1
2
3
];

 

My Output should be like below:

1,Area

1,Club

2,District

3,Country

3,Street

 

Can anybody please help. Thanks in Advance.

1 Solution

Accepted Solutions
Frank_Hartmann
Master II
Master II

maybe like this:

Input:
Load *, subfield(place,'/') as place_new;
load * Inline [
Col1, place

1,Area/Club

2,District

3,Country/Street
];

TAB2:
Load * Inline [
Col1
1
2
3
];

View solution in original post

1 Reply
Frank_Hartmann
Master II
Master II

maybe like this:

Input:
Load *, subfield(place,'/') as place_new;
load * Inline [
Col1, place

1,Area/Club

2,District

3,Country/Street
];

TAB2:
Load * Inline [
Col1
1
2
3
];