I have first and last names in a list and need to have excel pull only the
first name. These names are all in the same column. I tried using LEFT but
can't figure out how to have excel stop once it hits the space between the
first and last name.
-RaY
Pete_UK - 19 Aug 2008 10:28 GMT
Try this, assuming your combined name is in A1:
=LEFT(A1,SEARCH(" ",A1)-1)
Hope this helps.
Pete
> I have first and last names in a list and need to have excel pull only the
> first name. These names are all in the same column. I tried using LEFT but
> can't figure out how to have excel stop once it hits the space between the
> first and last name.
>
> -RaY
Mike H - 19 Aug 2008 10:29 GMT
Maybe this dragged down
=LEFT(A1,FIND(" ",A1)-1)
Mike
> I have first and last names in a list and need to have excel pull only the
> first name. These names are all in the same column. I tried using LEFT but
> can't figure out how to have excel stop once it hits the space between the
> first and last name.
>
> -RaY
RaY - 19 Aug 2008 10:48 GMT
Workd perfect. Thanks everyone.
> Maybe this dragged down
>
[quoted text clipped - 8 lines]
> >
> > -RaY
Gary''s Student - 19 Aug 2008 10:34 GMT
In B1:
=LEFT(A1,FIND(" ",A1)-1)
In C1:
=RIGHT(A1,LEN(A1)-LEN(B1)-1)

Signature
Gary''s Student - gsnu200800
> I have first and last names in a list and need to have excel pull only the
> first name. These names are all in the same column. I tried using LEFT but
> can't figure out how to have excel stop once it hits the space between the
> first and last name.
>
> -RaY