Help Macro searching one range against another and clearing non matching cells is letting partial matches through :(

Tardisgx

Board Regular
Joined
May 10, 2018
Messages
81
E.g A cell containing "app" or "apple69" should be cleared; but they are getting matched to "apple"

This macro was posted by another user in a different forum and they will not reply. How can the match creteria be made Exact.

Code:
Option Explicit
Sub REMOVEINV()


    Dim LastRowD As Long
    Dim LastRowF As Long
    Dim LastColF As Long
    Dim key As Variant
    Dim i As Long
    Dim j As Long
    Dim MyDict As Object
    Dim SearchRng As Range
    Dim TempArr() As Variant
    Dim ws As Worksheet


    'set objects
    Set MyDict = CreateObject("scripting.dictionary")
    Set ws = ActiveSheet


    'set range bounds
    With ws
        LastRowD = .Cells(.Rows.Count, "D").End(xlUp).Row
        LastRowF = .Cells(.Rows.Count, "F").End(xlUp).Row
        LastColF = .Cells(LastRowF, .Columns.Count).End(xlToLeft).Column
        Set SearchRng = .Range(.Cells(2, 6), .Cells(LastRowF, LastColF))
    End With


    'set dictionary
    With MyDict
        .CompareMode = vbTextCompare
        For i = 2 To LastRowD
            key = Cells(i, 4).Value
            If Not key = vbNullString And Not .exists(key) Then
                .Add key, i
            End If
        Next i
    End With


    'fetch range data
    TempArr = SearchRng.Value


    'remove unwanted entries
    For i = LBound(TempArr, 1) To UBound(TempArr, 1)
        For j = LBound(TempArr, 2) To UBound(TempArr, 2)
            If Not TempArr(i, j) = vbNullString Then
                If Not MyDict.exists(TempArr(i, j)) Then TempArr(i, j) = vbNullString
            End If
        Next j
    Next i


    'plot array
    SearchRng = TempArr
    Set MyDict = Nothing


End Sub
 
Last edited by a moderator:

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Tell us where you want to search for these values.
And what value you want to search for.
Are you saying you want to search for apple and look at all values in column A.

Please do not say look at script provided here and just modify it.

So if the script finds apple clear the cell.
 
Upvote 0
When posting code, please use code tags (see my signature block below) as it makes the code much easier to read, debug & copy paste for testing. I've added them for you above.

Perhaps you had better post a small set of sample data and expected results as it seems to be working for me. Here is my 'before' and 'after'. Did the code produce the wrong results for me? Where/explain if so?


Book1
DEFG
1
2carapple69
3carrrr
4appleappapple
5appiyiyu
Remove non-existing




Book1
DEFG
1
2car
3car
4appleapple
5
Remove non-existing
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,854
Messages
6,127,345
Members
449,379
Latest member
phyxius117

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