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

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
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,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

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