strip first word from a text cell

E

Excelandy

Help
How do I strip the first word from a text entry in a cell and place i
in the adjacent column.

Andy
 
D

Domenic

Assuming that the first and second words are separated by a space, tr
the following...

=LEFT(A1,FIND(" ",A1)-1)

Hope this helps!
 
Top