Bronte1226
Technical User
I am trying to create a query to parse out data in a field that has a format like this: 123-a-321
I have written this so far which gets me the last 3 numbers that I need, but still leaves the dash in place. I need to strip the dash as well, but can't seem to figure out how to do so in one step.
UPDATE April04_Tests SET April04_Tests.devid = Trim(right([devid],InStr([devid],"-")));
What am I missing?
I have written this so far which gets me the last 3 numbers that I need, but still leaves the dash in place. I need to strip the dash as well, but can't seem to figure out how to do so in one step.
UPDATE April04_Tests SET April04_Tests.devid = Trim(right([devid],InStr([devid],"-")));
What am I missing?