Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ... I want to load the below field, 'SALES_NUMBER', but excluding the string 'AB' wherever it exists.
222100
223190
AB224190
AB225190
So output should be :
222100
223190
224190
225190
Use a Where Statement in that case:
LOAD YourField
FROM Source
Where Left(YourField, 2) = 'AB';
Thanks Sunny your answers are spot on as usual. .
Robert I will bear in mind the purgechar function for future ... thanks
I am glad I was helpful