Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
HI
Try like this
test:
LOAD * Inline
[
State,region
Ca,West
NY,East
TX,South
];
Load if(wildmatch(State,'C*'),SubField(State&','®ion,','),State) as Z Resident test;