Hi,
I found this elsewhere on the forum and it works 100% as expected but as soon as I change out the special character to what I need it to be, I get Unparsable errors.
The formula that works is:
=RIGHT([Area Path]@row, FIND(">", [Area Path]@row, 1) - 1)
with the desired outcome:
But as soon as I change it to the character I actually need (not just following an example) it barfs:
=RIGHT([Area Path]@row, FIND("\", [Area Path]@row, 1) - 1)
So I know the function works, it's just not working for my character and I don't know why. Can somebody help me get this working to strip away everything up to and including the "\" please?