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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to parse single field into multiple

If I have a field in excel called Matter and data looks as follows:

ABC_PAT_Trademark_test

How can I parse group into a different field?

So ABC would be Seg

PAT would be Sub

Trademark would be type

and test would be LOC

Labels (1)
1 Reply
swuehl
Champion III
Champion III

LOAD

    subfield(Matter,'_',1) as Seg,

    subfield(Matter,'_',2) as Sub,

    subfield(Matter,'_',3) as type,

     subfield(Matter,'_',4) as LOC,

...

FROM ...;