Inverting last name/first name to fuirst name/las name

kimsa

New Member
Joined
Feb 26, 2016
Messages
15
Have:

Jones, Mary / Jones, Sam (or could be three names) Jones, Mary / Jones, Sam / Jones, Tom

Need:

Mary Jones; Sam Jones (or all three names if case may be)
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Here's a UDF you can try. Copy B1 down.
Excel Workbook
AB
1Jones, Mary / Jones, Sam / Jones, TomMary Jones; Sam Jones; Tom Jones
2Jones, Mary / Jones, SamMary Jones; Sam Jones
3Jones, AlAl Jones
Sheet1



Code:
Function Kimsa(S As String) As String
Dim Nam As Variant, i As Long
Nam = Split(S, "/")
For i = LBound(Nam) To UBound(Nam)
    Kimsa = Kimsa & "; " & Mid(Nam(i), InStr(Nam(i), ",") + 2) & " " & Left(Nam(i), InStr(Nam(i), ",") - 1)
Next i
Kimsa = WorksheetFunction.Trim(Mid(Kimsa, 3))
End Function
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,305
Members
449,079
Latest member
juggernaut24

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