Changing Data order in Cells

  • Thread starter Thread starter Adam Morgan
  • Start date Start date
A

Adam Morgan

Can someone please help me create a formula that will do
the following...

change a cell from:

doe,john

to

john,doe
 
Try:
=MID(A1,FIND(",",A1)+1,LEN(A1)-FIND(",",A1)+1)&", "&LEFT(A1,FIND(",",A1)-1)
with a1 = Doe, John
HTH
 
Or, you might like:

=RIGHT(A1, LEN(A1)-FIND(",",A1,1))&","&LEFT(A1,FIND(",",A1,1)-1)

(A1 contains john,doe)

HTH, Shockley
 
Back
Top