OilEconomist
Active Member
- Joined
- Dec 26, 2016
- Messages
- 439
- Office Version
- 2019
- Platform
- Windows
Thanks in advance and I will give feedback on whether it works or not.
I have cell entries with more than one word and I would like to extract only the first word. For example
First Word Only = First
I tried to use
But it would give me everything except after the first space. The formula gave me "First Word"
I have cell entries with more than one word and I would like to extract only the first word. For example
First Word Only = First
I tried to use
Code:
=LEFT(A2, FIND( "^^", SUBSTITUTE( A2," ","^^",LEN(A2)-LEN(SUBSTITUTE(A2," ",""))))-1)
But it would give me everything except after the first space. The formula gave me "First Word"