Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How do you strip away a character that precedes the data in a field? Example: Item_No field has items, all in the format *12345. I want to remove the * at the load.
Thanks.
Jeff
use purgechar() function
purgechar(Item_No, '*') as Item_No
See attached.
subfield(YourFieldName, '*', 2)
Thank you Michael.
No problem, here is another way, just starting from the 2nd position of the string:
mid(Item_No, 2) as Item_No