Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the text
it is converting so that the original text remains unchanged.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Need to separate and rearrange names

See Chip Pearson's site for rearranging multiple permutations of names.

http://www.cpearson.com/excel/FirstLast.htm


Gord Dibben MS Excel MVP

On Thu, 1 Apr 2010 13:43:01 -0700, Nadine
wrote:

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the text
it is converting so that the original text remains unchanged.


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default Need to separate and rearrange names

Try

=TRIM(MID(A1,FIND(",",A1)+1,99))&" "&LEFT(A1,FIND(",",A1)-1)

--

HTH

Bob

"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Need to separate and rearrange names

Assuming there is no space following the comma (both your examples show
that), give this formula a try...

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))

--
Rick (MVP - Excel)



"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Need to separate and rearrange names

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))


"Nadine" wrote:

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the text
it is converting so that the original text remains unchanged.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Need to separate and rearrange names

Actually, if your data could be mixed (some with a space after the comma and
some without one), then you can use this formula to handle both of those
conditions...

=TRIM(MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1)))

--
Rick (MVP - Excel)



"Rick Rothstein" wrote in message
...
Assuming there is no space following the comma (both your examples show
that), give this formula a try...

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))

--
Rick (MVP - Excel)



"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

Perfect! THank you so much.

"Bob Phillips" wrote:

Try

=TRIM(MID(A1,FIND(",",A1)+1,99))&" "&LEFT(A1,FIND(",",A1)-1)

--

HTH

Bob

"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.



.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

This leaves lots of extra space between the two names. Gord Dibben's formula
worked perfect. Thanks for taking a stab at it though. I appreciate it.

"Teethless mama" wrote:

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))


"Nadine" wrote:

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the text
it is converting so that the original text remains unchanged.

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

This one leaves lots of spaces between the first and last name.

"Rick Rothstein" wrote:

Assuming there is no space following the comma (both your examples show
that), give this formula a try...

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))

--
Rick (MVP - Excel)



"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.


.

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

That was supposed to say Bob Phillips' post worked perfect.

"Nadine" wrote:

This leaves lots of extra space between the two names. Gord Dibben's formula
worked perfect. Thanks for taking a stab at it though. I appreciate it.

"Teethless mama" wrote:

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))


"Nadine" wrote:

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the text
it is converting so that the original text remains unchanged.



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 216
Default Need to separate and rearrange names

This works. Thanks.

"Rick Rothstein" wrote:

Actually, if your data could be mixed (some with a space after the comma and
some without one), then you can use this formula to handle both of those
conditions...

=TRIM(MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1)))

--
Rick (MVP - Excel)



"Rick Rothstein" wrote in message
...
Assuming there is no space following the comma (both your examples show
that), give this formula a try...

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))

--
Rick (MVP - Excel)



"Nadine" wrote in message
...
How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than the
text
it is converting so that the original text remains unchanged.


.

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 834
Default Need to separate and rearrange names

You were lucky, I was about to write to my MP <bg

--

HTH

Bob

"Nadine" wrote in message
...
That was supposed to say Bob Phillips' post worked perfect.

"Nadine" wrote:

This leaves lots of extra space between the two names. Gord Dibben's
formula
worked perfect. Thanks for taking a stab at it though. I appreciate it.

"Teethless mama" wrote:

=MID(A1&" "&A1,FIND(",",A1)+1,LEN(A1))


"Nadine" wrote:

How do you take Last,First and change it to First Last?
Ex: Joe,John needs to be rewritten to John Doe.
Using Excel 2003 and having the formula be in a different cell than
the text
it is converting so that the original text remains unchanged.



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
Separate names into columns Carter Excel Worksheet Functions 3 May 14th 09 01:46 PM
Separate First, Last Names BStacy Excel Discussion (Misc queries) 2 April 7th 09 06:44 PM
need to separate first and last names from one cell to two pm Excel Discussion (Misc queries) 1 May 23rd 07 01:57 AM
Names and Separate Worksheets Memento Excel Worksheet Functions 4 May 9th 07 01:20 AM
can i rearrange names in alphabetic order... naughtyboy Excel Discussion (Misc queries) 2 August 7th 06 09:50 AM


All times are GMT +1. The time now is 05:00 PM.

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

About Us

"It's about Microsoft Excel"