I haven't been here in a long time, but I wanted sto see if someone can help.
What I want to do is very similar to a thread I saw on another forum.
The thread is called 'Swap Last Name & First Name' and it is here Swap Last Name & First Name.
I posted there but I'm waiting for a reply.
I want to do the same thing - change the order of the last name and first name - but with the added difficulties that last names are captitalized and there may be 2 last names and maybe a first name and a middle name, too. I've listed some examples below:
Original data:
DOE John
VAN GOGH Vincent
DA VINCI Leonardo
NADAL PARERA Rafael
JIMENEZ RODRIGUEZ Miguel Ángel
What I'd like to do is get the names in the following format:
John Doe
Vincent Van Gogh
Leonardo Da Vinci
Rafael Nadal Parera
Miguel Ángel Jimenez Rodriguez
I know the following function is supposed to take the original data and separate the capitalized last names into a separate cell, but I'd like to just have a continuous name in the order First Name - Midde Name - Last Name - 2nd Last Name. Thanks!
I found that function here:Code:Sub FixAddresses() RowNum = 1 Do Until Cells(RowNum, 1) = "" OldText = Cells(RowNum, 1).Value WordLen = Len(OldText) For i = 8 To WordLen If (IsNumeric(Mid(OldText, i, 1)) Or _ (Mid(OldText, i, 1) = " ") Or _ (Mid(OldText, i, 1) = ",") Or _ (Mid(OldText, i, 1) = UCase(Mid(OldText, i, 1)))) Then EndChar = i Else Exit For End If Next NewText = Mid(OldText, 8, EndChar - 8) Cells(RowNum, 2).Value = NewText RowNum = RowNum + 1 Loop End Sub
Excel formula to extract only upper case text from a cell? - Yahoo UK & Ireland Answers
Bookmarks