Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I want to eliminate 1st 4 char fropm my customer name field
eg.Mr. Xyz I want only Xyz
thanks®ards
rohit
Hi,
Have u tried with this?
Load
Right(CustomerName,Len(CustomerName)-4) as CustomerName
From..
Hope it helps
Celambarasan
Hi,
The Script below works fine as Celambarasan suggested
Load
Right(CustomerName, Len(CustomerName) - 4) as CustomerName
'
'
From DataSource;
Regards,
Jagan.
Use this
mid(Customername,5,len(Customername)-1)
hope this helps