Extract words before the ( in a cell

smithgt

Board Regular
Joined
Jan 22, 2010
Messages
193
I've a cell containing PUFFER (#23), or LION (#16), EAGLE (#56)

What I want to be able to do is extract the word before the open bracket.

Do I need to use FIND and LEFT?

thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
If there is the possibility of there being no space inbetween the end of the word and the ( then try

=TRIM(LEFT(A15, FIND("(", A15)-1))

If there is always a space try

=LEFT(A15, FIND("(", A15)-2)
 
Upvote 0

Forum statistics

Threads
1,203,250
Messages
6,054,382
Members
444,721
Latest member
BAFRA77

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top