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

Labels (1)
2 Replies
m_woolf
Master II
Master II

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

MarcoWedel
MVP
MVP

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