Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this, assuming your combined name is in A1:
=LEFT(A1,SEARCH(" ",A1)-1) Hope this helps. Pete On Aug 19, 10:19*am, RaY wrote: 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 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe this dragged down
=LEFT(A1,FIND(" ",A1)-1) Mike "RaY" wrote: 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 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In B1:
=LEFT(A1,FIND(" ",A1)-1) In C1: =RIGHT(A1,LEN(A1)-LEN(B1)-1) -- Gary''s Student - gsnu200800 "RaY" wrote: 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 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Workd perfect. Thanks everyone.
"Mike H" wrote: Maybe this dragged down =LEFT(A1,FIND(" ",A1)-1) Mike "RaY" wrote: 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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
help displaying text if certain conditions are met?? | Excel Worksheet Functions | |||
Difficulty displaying text | Excel Worksheet Functions | |||
Text not displaying completely | Excel Discussion (Misc queries) | |||
HELP: text keeps on displaying ############## | Excel Worksheet Functions | |||
Displaying text in vertical | Excel Discussion (Misc queries) |