Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 30
Default Is it possible to split a full name to just the first (or last) name?

Using concatenate in Excel will bring things together. Is there a way
to do the opposite of that?

I have one sheet that has John Smith listed for the buyers name. I
have another sheet that lists all my buyers but I don't need John's
full name listed for this purpose. His first name would do. Without
going back and making changes in my sheets with all the names, can I
do anything to have it just take the first name?

Example:
Sheet 1 NAME ADDRESS PHONE etc
John Smith 123 Main St 555-1212


Sheet 2 NAME
='Sheet1'!A4 <----- that's what I'm currently doing
with the end result saying "John Smith"


I hope this makes sense.

Thank you.

Chip
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default Is it possible to split a full name to just the first (or last) name?

On Thu, 16 Jul 2009 13:34:40 -0700 (PDT), "
wrote:

Using concatenate in Excel will bring things together. Is there a way
to do the opposite of that?

I have one sheet that has John Smith listed for the buyers name. I
have another sheet that lists all my buyers but I don't need John's
full name listed for this purpose. His first name would do. Without
going back and making changes in my sheets with all the names, can I
do anything to have it just take the first name?

Example:
Sheet 1 NAME ADDRESS PHONE etc
John Smith 123 Main St 555-1212


Sheet 2 NAME
='Sheet1'!A4 <----- that's what I'm currently doing
with the end result saying "John Smith"


I hope this makes sense.

Thank you.

Chip


Try the following formula:

=LEFT(Sheet1!A4,FIND(" ",Sheet1!A4)-1)

If will return everythinh upto, but excluding, the first space.

Hope this helps / Lars-Åke
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 913
Default Is it possible to split a full name to just the first (or last) name?

On Thu, 16 Jul 2009 20:39:08 GMT, Lars-Åke Aspelin
wrote:

On Thu, 16 Jul 2009 13:34:40 -0700 (PDT), "
wrote:

Using concatenate in Excel will bring things together. Is there a way
to do the opposite of that?

I have one sheet that has John Smith listed for the buyers name. I
have another sheet that lists all my buyers but I don't need John's
full name listed for this purpose. His first name would do. Without
going back and making changes in my sheets with all the names, can I
do anything to have it just take the first name?

Example:
Sheet 1 NAME ADDRESS PHONE etc
John Smith 123 Main St 555-1212


Sheet 2 NAME
='Sheet1'!A4 <----- that's what I'm currently doing
with the end result saying "John Smith"


I hope this makes sense.

Thank you.

Chip


Try the following formula:

=LEFT(Sheet1!A4,FIND(" ",Sheet1!A4)-1)

If will return everythinh upto, but excluding, the first space.

Hope this helps / Lars-Åke


And the following formula will return everything after the first
space:

=MID(Sheet1!A4,FIND(" ",Sheet1!A4)+1,LEN(Sheet1!A4)-FIND("
",Sheet1!A4))

/ Lars-Åke
  #4   Report Post  
Posted to microsoft.public.excel.misc
dlw dlw is offline
external usenet poster
 
Posts: 510
Default Is it possible to split a full name to just the first (or last) na

=LEFT(A1,LEN(A1)-FIND(" ",A1))
(add the sheet1 reference)

" wrote:

Using concatenate in Excel will bring things together. Is there a way
to do the opposite of that?

I have one sheet that has John Smith listed for the buyers name. I
have another sheet that lists all my buyers but I don't need John's
full name listed for this purpose. His first name would do. Without
going back and making changes in my sheets with all the names, can I
do anything to have it just take the first name?

Example:
Sheet 1 NAME ADDRESS PHONE etc
John Smith 123 Main St 555-1212


Sheet 2 NAME
='Sheet1'!A4 <----- that's what I'm currently doing
with the end result saying "John Smith"


I hope this makes sense.

Thank you.

Chip

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,934
Default Is it possible to split a full name to just the first (or last) name?

The only problem I see in implementing your request is for first names that
are composed of two separate names. I have a friend whose first name is Mary
Ann... the space is part of her name. If you have any such names in your
data, the already provided formulas will not pick up the "Anne" part of my
friend's name. With the full name in a cell, I know of know way to parse out
this kind of first name short of having a table of such names to check in
against.

--
Rick (MVP - Excel)


wrote in message
...
Using concatenate in Excel will bring things together. Is there a way
to do the opposite of that?

I have one sheet that has John Smith listed for the buyers name. I
have another sheet that lists all my buyers but I don't need John's
full name listed for this purpose. His first name would do. Without
going back and making changes in my sheets with all the names, can I
do anything to have it just take the first name?

Example:
Sheet 1 NAME ADDRESS PHONE etc
John Smith 123 Main St 555-1212


Sheet 2 NAME
='Sheet1'!A4 <----- that's what I'm currently doing
with the end result saying "John Smith"


I hope this makes sense.

Thank you.

Chip




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
full screen Tree*Rat New Users to Excel 1 October 20th 08 09:26 AM
How do I remove split a split window? Norm New Users to Excel 3 July 19th 08 10:31 PM
How do I get full tab color? Judith Wiltshire-blackmann Excel Worksheet Functions 1 January 26th 08 03:55 AM
full row selection Uitlander Excel Discussion (Misc queries) 7 November 2nd 07 07:28 AM
Full path possible to be seen? Octavio New Users to Excel 10 July 2nd 06 08:51 PM


All times are GMT +1. The time now is 08:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"