B b1urrc0ck New Member Nov 20, 2012 #1 Hi isit possible for excel to find same name and change all the Doe John to John Doe? e.g. John Doe and Doe John.
Hi isit possible for excel to find same name and change all the Doe John to John Doe? e.g. John Doe and Doe John.
S Satish.digit Member Nov 20, 2012 #2 Hi you can use Find replace command for this. use Ctrl+H and find with "Doe John" and replace with "John Doe"
Hi you can use Find replace command for this. use Ctrl+H and find with "Doe John" and replace with "John Doe"
Faseeh Excel Ninja Nov 20, 2012 #3 Hi b1urrc0ck, Welcome to the forums! Or if you have a list in Col A you can use: Code: =TRIM(MID(A1,FIND(" ",A1)+1,100))& " "&LEFT(A1,LEN(A1)-FIND(" ",A1)+1) Regards,
Hi b1urrc0ck, Welcome to the forums! Or if you have a list in Col A you can use: Code: =TRIM(MID(A1,FIND(" ",A1)+1,100))& " "&LEFT(A1,LEN(A1)-FIND(" ",A1)+1) Regards,