Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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 ...;