Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The tricky part about this is the that it must be done in only 2 cells, all
of the example given in the Excel tutorials are using one cell for each name, one for the first and one for the last. That however, does not help me. I must convert these names in singles cells like such From:CELL1--[Smith, John] To:CELL2--[John Smith]. CAN SOMEONE HELP ME PLEASE....1000 Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=MID(A1,FIND(",",A1,1)+2,1024)&" "&LEFT(A1,FIND(",",A1,1)-1) HTH, Elkar "Levi" wrote: The tricky part about this is the that it must be done in only 2 cells, all of the example given in the Excel tutorials are using one cell for each name, one for the first and one for the last. That however, does not help me. I must convert these names in singles cells like such From:CELL1--[Smith, John] To:CELL2--[John Smith]. CAN SOMEONE HELP ME PLEASE....1000 Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() It's difficult to tell from your post but, assuming the first and last names are separated by a comma then a space =MID(A1&" "&A1,FIND(",",A1)+2,LEN(A1)-1) -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=537891 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As long as they are all of that format
=MID(A1,FIND(", ",A1)+2,255)&" "&LEFT(A1,FIND(", ",A1)-1) -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Levi" wrote in message ... The tricky part about this is the that it must be done in only 2 cells, all of the example given in the Excel tutorials are using one cell for each name, one for the first and one for the last. That however, does not help me. I must convert these names in singles cells like such From:CELL1--[Smith, John] To:CELL2--[John Smith]. CAN SOMEONE HELP ME PLEASE....1000 Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I create a schedule from a list of dates ? | Charts and Charting in Excel | |||
How to change ALL CAPS to Initial Caps only? | Excel Worksheet Functions | |||
Find function | Excel Worksheet Functions | |||
Cell Change Color - Need Help | New Users to Excel | |||
Pivot Table Zero Value | Excel Discussion (Misc queries) |