To Extract text from parentheses, use this formula in a new column, assuming the target column is column “A”:
=MID(A1,FIND(“(“,A1)+1,FIND(“)”,A1)-FIND(“(“,A1)-1)
Note: Change “A1” accordingly to match the column and specific cell that you are targeting, then copy that formula to all other cells in your new column. Done!
And then to remove the text and the parentheses from all values in a column:
- Select the entire column
- Do a Find and Replace
- In the “Find what” box, enter this: (*)
- Click “Replace All”. Done!