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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
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

1 Reply
swuehl
MVP
MVP

LOAD

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

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

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

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

...

FROM ...;