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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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 ...;