Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
we have data like
1
2
3
I want to show
P1
P2
P3
Hi ,
look at this-
TEST1:
LOAD * INLINE
[ Field
1
2
3
];
MAP:
mapping LOAD * INLINE
[ Field,FiledVAlue
1,P1
2,P2
3,P3
];
TEST:
LOAD
ApplyMap('MAP',Field) as Field1
Resident TEST1;
DROP Table TEST1;
You can use like
'P'&[Your Field] as New_Field
Hi ,
look at this-
TEST1:
LOAD * INLINE
[ Field
1
2
3
];
MAP:
mapping LOAD * INLINE
[ Field,FiledVAlue
1,P1
2,P2
3,P3
];
TEST:
LOAD
ApplyMap('MAP',Field) as Field1
Resident TEST1;
DROP Table TEST1;