Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
if i have a field called NAME and the values for this field are
ADDAX1
ADDAX2
ADDAX3
BO1
BO2
BO3
BO4
TRF41
TRF44
how do i get just the text from this into a new field?
ie
ADDAX
BO
TRF
Thanks
Temp:
Load PurgeChar(NAME,'0123456789') as NAME Inline
[
NAME
ADDAX1
ADDAX2
ADDAX3
BO1
BO2
BO3
BO4
TRF41
TRF44
];
NoConcatenate
Final:
Load Distinct NAME Resident Temp;
Drop Table Temp;
Temp:
Load PurgeChar(NAME,'0123456789') as NAME Inline
[
NAME
ADDAX1
ADDAX2
ADDAX3
BO1
BO2
BO3
BO4
TRF41
TRF44
];
NoConcatenate
Final:
Load Distinct NAME Resident Temp;
Drop Table Temp;
hi, use this function while loading
purgechar ( Name,'1234') as name
Regards,
harish