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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

combining two fields to one

Hi,

My requirement is I have two fields X,Y. X field has  values A,B and Y field has value C..now I want to create a new field Z with values A,B,C. My intention is to create graphs on combined values A,B and C.

Any help is highly appreciated.

10 Replies
MayilVahanan

HI

Try like this

test:

LOAD * Inline

[

State,region

Ca,West

NY,East

TX,South

];

Load if(wildmatch(State,'C*'),SubField(State&','&region,','),State) as Z Resident test;

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.