Last Name, First Name to First Name Last Name (with a twist)

Bruzer

New Member
Joined
Sep 11, 2017
Messages
2
Most of customer list comes in as:

Doe, John

or

Doe, John & Jane

It easy to change those to:

John Doe

or

John & Jane Doe

by using:

=TRIM(MID(A2&" "&A2,FIND(",",A2)+1,LEN(A2)))

However, we also have customers entered as:

Doe, John & Smith, Jane

and we'd like to have it appear as:

John Doe & Jane Smith

Is there a formula that could handle that, or does it require a VBA solution?

Thanks.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
VBA RegScript would be ideal solution but unfortunately I'm still learning it.
I'm sure someone in the forum knows how to answer this question RegScript.
 
Upvote 0
OK, here's what I came up with. The first function handles the "normal" case, the second handles the special case. This was based on VBA code from here. It's not pretty, but it works!

Code:
[COLOR=#222222][FONT=Verdana]' Handles normal case of "lastname, firstname" or "lastname, firstname1 & firstname2"[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Function FlipNames(MyString As Variant)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim lastname As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim firstname As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]If InStr(1, MyString, ",") Then[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     lastname = Trim(Left(MyString, WorksheetFunction.Find(",", MyString) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     firstname = Trim(Right(MyString, Len(MyString) - WorksheetFunction.Find(",", MyString) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]FlipNames = Trim(firstname & " " & lastname)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End If[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End Function[/FONT][/COLOR]

[COLOR=#222222][FONT=Verdana]' Handles special case of "lastname1, firstname1 & lastname2, firstname2"[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Function FlipNames2(MyString As Variant)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim name1 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim name2 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim lastname1 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim firstname1 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim lastname2 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]Dim firstname2 As String[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]If InStr(1, MyString, "&") Then[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     name1 = Left(MyString, WorksheetFunction.Find("&", MyString) - 1)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     name2 = Right(MyString, Len(MyString) - WorksheetFunction.Find("&", MyString) - 1)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End If[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]If InStr(1, name1, ",") Then[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     lastname1 = Trim(Left(name1, WorksheetFunction.Find(",", name1) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     firstname1 = Trim(Right(name1, Len(name1) - WorksheetFunction.Find(",", name1) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End If[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]If InStr(1, name2, ",") Then[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     lastname2 = Trim(Left(name2, WorksheetFunction.Find(",", name2) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]     firstname2 = Trim(Right(name2, Len(name2) - WorksheetFunction.Find(",", name2) - 1))[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End If[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]FlipNames2 = Trim(firstname1 & " " & lastname1 & " & " & firstname2 & " " & lastname2)[/FONT][/COLOR]
[COLOR=#222222][FONT=Verdana]End Function[/FONT][/COLOR]
 
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,375
Members
449,155
Latest member
ravioli44

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