VBA - extract last matching occurrence in string

BenGee

Board Regular
Joined
Mar 5, 2016
Messages
195
Hi

I have a list of full names (one name per cell) to compare to in column A. In column E, I have a string of varying lengths containing first names and surnames separated with a semicolon - for example "firstname1 surname1; firstname2 surname2; firstname3 surname3"

Column F contains the last firstname surname in the string in column E. What I want to do is compare the names in Column F to my range A2:A40, and where there's not a match, to extract the last matching name from the string instead.

So;
Column A contains - "Harry Potter" "Hermione Granger" "Ron Weasley" (separate cells)
Column E contains - "Harry Potter; Ron Weasley; Draco Malfoy; Albus Dumbledore" (string in one cell)
Column F contains - "Albus Dumbledore"
Column G desired result = "Ron Weasley"

I have this that only gets me the first firstname surname from the string instead, where Column F doesn't match Column A
VBA Code:
For Each c1 In Sheets("test").Range("F2:F" & lastRow2)
    For Each c2 In Sheets("tableData").Range("A2:A40")
        If c2.Value <> c1.Value Then
            c1.Offset(, 1).Value = Split(c1.Offset(, -1).Value, ";")
        End If
    Next
Next

Any ideas please?
 
Last edited:

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Book3
ABCDEFG
1Harry PotterHarry Potter; Ron Weasley; Draco Malfoy; Albus DumbledoreAlbus DumbledoreRon Weasley
2Hermione Granger
3Ron Weasley
Sheet1


Something like this?

VBA Code:
Sub test2()
Dim dict As New dictionary
dict.CompareMode = vbTextCompare

a = Range("a1:a" & Cells(Rows.Count, "A").End(xlUp).Row)
e = Split(Range("e1").Value, "; ")

For i = 1 To UBound(a, 1)
    dict.Add a(i, 1), i
Next i

For i = 0 To UBound(e, 1)
    If dict.Exists(e(i)) Then
        b = e(i)
    End If
Next i

[g1].Value = b

End Sub

What's the purpose of column F? Is it fill manually? have any other conditions?
 
Upvote 0
For i = 1 To UBound(a, 1)
Thanks RudRud - I get a type mismatch on this line?

Column F is purely to show 'output' to the user. And no other conditions and it's not manual, the full code if it helps is;

VBA Code:
Application.ScreenUpdating = False

lastRow2 = Sheets("test").Range("E" & Rows.Count).End(xlUp).Row

Sheets("test").Range("F1:F" & lastRow2).Formula = "=TRIM(RIGHT(SUBSTITUTE(E1,"";"",REPT("" "",LEN(E1))),LEN(E1)))"

For Each c1 In Sheets("test").Range("F2:F" & lastRow2)
    For Each c2 In Sheets("tableData").Range("A2:A40")
        If c2.Value <> c1.Value Then
            c1.Offset(, 1).Value = Split(c1.Offset(, -1).Value, ";")
        End If
    Next
Next

Application.ScreenUpdating = True
 
Upvote 0
Can you see below example? is it your expecting result?

Column F : search last first & last name from column E
Column G : extract last matching name

Book1
ABCDEFG
1Harry PotterHarry Potter; Ron Weasley; Draco Malfoy; Albus DumbledoreAlbus DumbledoreRon Weasley
2Hermione GrangerHarry Potter; Draco MalfoyDraco MalfoyHarry Potter
3Ron Weasley
Sheet1


VBA Code:
Sub test2()
Dim dict As New Dictionary
dict.CompareMode = vbTextCompare

For Each ss In Range("e1:e" & Cells(Rows.Count, "e").End(xlUp).Row)
e = Split(ss.Value, "; ")
a = Range("a1:a" & Cells(Rows.Count, "A").End(xlUp).Row)


For i = 1 To UBound(a, 1)
    dict.Add a(i, 1), i
Next i

For i = 0 To UBound(e, 1)
    If dict.Exists(e(i)) Then
        b = e(i)
    End If
Next i

ss.Offset(0, 1).Value = Right(ss.Value, Len(ss.Value) - InStrRev(ss.Value, "; ") - 1)
ss.Offset(0, 2).Value = b
dict.RemoveAll

Next ss

End Sub
 
Upvote 0
test:
Book1
ABCDEFG
1Harry Potter; Ron Weasley; Draco Malfoy; Albus DumbledoreAlbus DumbledoreRon Weasley
2Harry Potter; Draco MalfoyDraco MalfoyHarry Potter
test


tableData
Book1
A
1Harry Potter
2Hermione Granger
3Ron Weasley
tableData


Column F : search last first & last name from column E
Column G : extract last matching name


VBA Code:
Sub test2()
Dim dict As New Dictionary
dict.CompareMode = vbTextCompare

a = Sheets("tabledata").Range("a1:a" & Sheets("tabledata").Cells(Rows.Count, "A").End(xlUp).Row)

With Sheets("test")

    For Each ss In .Range("e1:e" & .Cells(Rows.Count, "e").End(xlUp).Row)
    e = Split(ss.Value, "; ")
   
    For i = 1 To UBound(a, 1)
        dict.Add a(i, 1), i
    Next i
   
    For i = 0 To UBound(e, 1)
        If dict.Exists(e(i)) Then
            b = e(i)
        End If
    Next i
   
    ss.Offset(0, 1).Value = Right(ss.Value, Len(ss.Value) - InStrRev(ss.Value, "; ") - 1)
    ss.Offset(0, 2).Value = b
    dict.RemoveAll
    b = Empty
    Next ss

End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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