Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
My raw data price list is string , i need to read only the number , can some one give me the script.
Now my script is like this , it will read USD300 :-
[List Price] AS LIST_PRICE,
Paul
Hi,
Use
purgechar ( LIST_PRICE,'USD' )
or
=Replace( LIST_PRICE,'USD', '' )
Regards,
Jagan
use Subfield(LIST_PRICE,'USD',2)
OR
purgechar ( LIST_PRICE,'USD' )
use num function
num([LISTPRICE]) as [LIST_PRICE]
Hi,
Use
purgechar ( LIST_PRICE,'USD' )
or
=Replace( LIST_PRICE,'USD', '' )
Regards,
Jagan
Hi,
This will work simply
=Mid('USD300',4)
Regards,
Saritha xavier
Both work fine Shi Thank a lot
This not able to work. Thank you too for trying.
you even better Jagan , you dare to try replace.
Hi Sar
I doubt your will work , as in your script there it no List Price.
Paul
new:
load mid(LISTPRICE,4)as PRICE
Resident USD;