Left and Find Formula Issue
Are there any glaring issues with the following formula?
=LEFT([AR - Run 1 Size]@row, FIND("""", [AR - Run 1 Size]@row) - 1)
I'm trying to return the leftmost text that occur before the quotation mark. For example,
Original string: 2" InchFisher399
I want just the number 2
I just get #UNPARSABLE
Best Answer
-
I figured it out. It didn't like looking for the quotation mark, so I changed it to look for the space after the quotation mark and then subtract by 2.
=LEFT([AR - Run 1 Size]@row, FIND(" ", [AR - Run 1 Size]@row) - 2)
Answers
-
I figured it out. It didn't like looking for the quotation mark, so I changed it to look for the space after the quotation mark and then subtract by 2.
=LEFT([AR - Run 1 Size]@row, FIND(" ", [AR - Run 1 Size]@row) - 2)
-
Thanks for posting your solution! 🙂
Help Article Resources
Categories
Check out the Formula Handbook template!