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: 
vijetas42
Specialist
Specialist

subfield

hi all,

I have values in field like,

1234;231;422;

12344;8982;223;

1212;

and i want to separate out values in to different rows so, i have used subfield but, it is creating one more null record for each vale how to remove that

2 Replies
m_woolf
Master II
Master II

subfield(left(Yourfield,len(Yourfield)-1),';') as whatever

MarcoWedel

Hi,

one solution might be:

QlikCommunity_Thread_309430_Pic1.JPG

table1:

LOAD *

Where Len(Trim(value));

LOAD *,

    SubField(field,';') as value

Inline [

    field

    1234;231;422;

    12344;8982;223;

    1212;

];

hope this helps

regards

Marco