I am trying to change Smith, John to John Smith

G

Guest

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.
 
G

Guest

Try this:

=MID(A1,FIND(",",A1,1)+2,1024)&" "&LEFT(A1,FIND(",",A1,1)-1)

HTH,
Elkar
 
D

daddylonglegs

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)
 
B

Bob Phillips

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 said:
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top