Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to switch the names in a column in Excel and I found information
on how to do this last time I looked but can no longer find it - name is in the following format Smith John and Mary and I want it to read John and Mary Smith I know this is a several step process and the steps were on the internet last time I looked but know I can't find it Somebody Please Help Me Down but not out in Weeki Wachee Florida |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This assumes that the last names are all one-word names, no St. John type names
=MID(A1,1+SEARCH(" ",A1,1),255)&" "&LEFT(A1, SEARCH(" ",A1,1)) "Help Me - I need to switch these names" wrote: I am trying to switch the names in a column in Excel and I found information on how to do this last time I looked but can no longer find it - name is in the following format Smith John and Mary and I want it to read John and Mary Smith I know this is a several step process and the steps were on the internet last time I looked but know I can't find it Somebody Please Help Me Down but not out in Weeki Wachee Florida |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm assuming that there should be a space between Smith and John, if so
=RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)) If not I don't know as there's nothing to look for to find the end of one name and the start of the next one, Regards, Alan. "Help Me - I need to switch these names" <Help Me - I need to switch these wrote in message ... I am trying to switch the names in a column in Excel and I found information on how to do this last time I looked but can no longer find it - name is in the following format Smith John and Mary and I want it to read John and Mary Smith I know this is a several step process and the steps were on the internet last time I looked but know I can't find it Somebody Please Help Me Down but not out in Weeki Wachee Florida |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
Multiply two columns in Excel or one column by one number | New Users to Excel | |||
Sort Excel Column on Fifth Character | Excel Worksheet Functions | |||
Does excel recognise names rather than cells? | Excel Worksheet Functions | |||
Is there a way to switch name order in an Excel column? | Excel Discussion (Misc queries) |