Clear cells in Range that do not match a "Master List"

Status
Not open for further replies.

Tardisgx

Board Regular
Joined
May 10, 2018
Messages
81
Alpha Frogs's macro here helped me greatly; (in this scenario I have a list of invalid codes) it find and replaces cells that do match a list of cells (list of invalid codes). If I replace with nothing I'm essentially clearing the cells which is what I needed.

Rich (BB code):
Rich (BB code):
sub Substitutions()
    
    Dim rngData     As Range
    Dim rngLookup   As Range
    Dim Lookup      As Range
    
    With Sheets("Sheet1")
        Set rngData = .Range("A:B")
    End With
    
    With Sheets("Sheet1")
        Set rngLookup = .Range("D1", .Range("D" & Rows.Count).End(xlUp))
    End With
    
    For Each Lookup In rngLookup
        If Lookup.Value <> "" Then
            rngData.Replace What:=Lookup.Value, _
                            Replacement:=Lookup.Offset(0, 1).Value, _
                            LookAt:=xlPart, _
                            SearchOrder:=xlByRows, _
                            MatchCase:=False
        End If
    Next Lookup
    
End Sub



The information I'm dealing with here are 9 character long numerical codes; potentially alphanumeric in the future.

Now I have a "Master List" of valid codes and want to clear cells that do not match this list. I'm talking about exact matches not partial ones.

Related- i'm trying to be resource conscious; I can't get my head around how to create a loop i've read examples but getting nowhere; how to improve the above?
 

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.
You don't indicate which range is the "Master List" so might need to swap range sets.
Try this
Code:
Sub Clear_Stuff()

    Dim MasterList        As Range
    Dim rngClear          As Range
    Dim cel               As Range
    Dim foundcel          As Range
    Dim lr                As Long
    
    With Sheets("Sheet1")
        lr = .Columns("A:B").Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row
        Set MasterList = .Range("A1:B" & lr)
        Set rngClear = .Range("D1", .Range("D" & Rows.Count).End(xlUp))
    End With

    For Each cel In rngClear
        If cel.Value <> "" Then
            Set foundcel = MasterList.Find(What:=cel.Value, _
                                           LookIn:=xlValues, _
                                           LookAt:=xlWhole, _
                                           SearchOrder:=xlByRows, _
                                           SearchDirection:=xlNext, _
                                           MatchCase:=False)
            
            If foundcel Is Nothing Then cel.Value = ""
        End If
    Next cel
End Sub
 
Upvote 0
Hi I am sorry I pasted a version without the notes on. also would have been smarter if I included the actual ranges. Below is a version of the master list macro I have which cannot work on the large ranges stated. The master list is a list in column A and the range of cells to clear if they doesn't match is C1:DVC62600 workbook looks like this https://imgur.com/a/usunRgo

<code style="margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; line-height: inherit; font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, sans-serif; vertical-align: baseline; box-sizing: inherit; white-space: inherit;">Sub REMOVEINV()
Application
.Calculation = xlCalculationManual
Application
.ScreenUpdating = False
Application
.DisplayStatusBar = False
Application
.EnableEvents = False

Dim Rng As Range, Dn As Range
Set Rng = Range("A2:A35524") 'Range to match against

With CreateObject("scripting.dictionary")
.CompareMode = vbTextCompare

For Each Dn In Rng: .Item(Dn.Value) = Empty: Next

Set Rng = Range("C1:DVC62600") ' Range to clear
For Each Dn In Rng
If Not .exists(Dn.Value) Then Dn.ClearContents
Next Dn
End With
End Sub</code>
 
Upvote 0
Status
Not open for further replies.

Forum statistics

Threads
1,214,800
Messages
6,121,641
Members
449,044
Latest member
hherna01

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