Swapping order of names

dboatrt

New Member
Joined
May 17, 2009
Messages
10
I have a column of firstname and firstname lastname and need to change it to lastname, firstname and firstname. I've tried text to columns but because of the ones w/ multiple firstnames I cannot do it without alot of extra manipulating.

Does anybody have a quick fix?

For example the way it currently appears:

Jane and John Doe

I need it to read as: Doe, Jane and John
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
If data is in A1 try this formula in B1

=MID(A1&", "&A1,FIND("^^",SUBSTITUTE(A1," ","^^",3))+1,LEN(A1)+1)
 
Upvote 0
This did not work. Not every row in the column have multiple first names such as Jane and John Doe. Some in the column are singles such as Jane Doe. Will this make a difference? Sorry I should have included that bit of info in the first message.
 
Upvote 0
This did not work. Not every row in the column have multiple first names such as Jane and John Doe. Some in the column are singles such as Jane Doe. Will this make a difference? Sorry I should have included that bit of info in the first message.

Hi

Yes you should, because that must be included in the formula.

Barry's formula will, however, work also in this case, you just have to replace the hardcoded number of spaces:

=MID(A1&", "&A1,FIND("^^",SUBSTITUTE(A1," ","^^",LEN(A1)-LEN(SUBSTITUTE(A1," ",""))))+1,LEN(A1)+1)
 
Upvote 0

Forum statistics

Threads
1,215,836
Messages
6,127,183
Members
449,368
Latest member
JayHo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top