I have a cell containing a text string like this:
A1 = John (John started 1/1/2020)
I'd like to remove everything in parenthesis so the end result would be:
A1 = John
I am trying to use REGEXREPLACE and I have the following formula:
=REGEXREPLACE(A1,"\(([A-Za-z]+)\)","")
However, this is not working. How do I remove the parenthesis and everything inside? The text in the parenthesis will vary, but will always be inside parenthesis.
For additional context - The above formula does work on a cell with a text string like this:
A2 = William (Bill)
When I use the above formula on cell A2, I get this:
A2 = William
Why does it work on A2 but not A1?
