How to pick 1st word

Salamullah

Board Regular
Joined
Mar 28, 2011
Messages
221
Hi

I want a formula to pick 1st word from the sentence , please help



Jack & Jill = Jack
Please come = Please
Gross Margin = Gross
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Hi,

If the 1st word is Always defined before the 1st space:


Book1
AB
1Jack & JillJack
2Please comePlease
3Gross MarginGross
Sheet709
Cell Formulas
RangeFormula
B1=LEFT(A1,FIND(" ",A1)-1)
 
Upvote 0
Edit: Ooops, hadn't seen jtakw's post.
However, I've included an extra bit so it still returns the first word even if there is only 1 word in the cell.

.. or just
=LEFT(A1,FIND(" ",A1&" ")-1)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,225
Members
448,951
Latest member
jennlynn

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