Look through a list in one workbook, find those values in multiple other workbooks and delete rows when found

OJMcGee

New Member
Joined
Jul 13, 2021
Messages
5
Office Version
  1. 365
Platform
  1. Windows
Hi,

I'm very new to VBA and looking for help with this task.

I have a list of 50 or so reference numbers - I need to search for these references in 120 different workbooks and where I find any of those references, delete the entire row from that workbook.

Can anyone help?

Thanks
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
We will need more information:
-In which column are the reference numbers and in what range?
-What is the full path to the folder containing the 120 files?
-What is the extension of those files (xlsx, xlsm)?
-Are they the only files in that folder?
-Will the workbook containing the macro also be saved in that same folder?
-Do you want to search only one sheet or all sheets in the different workbooks?
-Are the reference numbers to be searched found in the same column in all the workbooks or can they be anywhere in the sheet?
 
Upvote 0
We will need more information:
-In which column are the reference numbers and in what range?
-What is the full path to the folder containing the 120 files?
-What is the extension of those files (xlsx, xlsm)?
-Are they the only files in that folder?
-Will the workbook containing the macro also be saved in that same folder?
-Do you want to search only one sheet or all sheets in the different workbooks?
-Are the reference numbers to be searched found in the same column in all the workbooks or can they be anywhere in the sheet?
-The references are all in column A of each sheet and the number of rows averages around 45,000 per sheet, columns go to AF
-Full path for the folder is C:\Users\ojmcgee\Desktop\References to be removed
-File extension is .xlsx
-They are the only files in this folder
-The workbook with the macro can also be saved in this folder, but doesn't need to be
-Only looking to search on Sheet1
-The references to be searched are all in the same column (A) in each of the workbooks

Thank you
 
Upvote 0
Place this macro in a regular module and save the workbook in the same folder as the other files. The macro assumes your reference values in the macro workbook start in row 2 of column A. Change the range (in red) to suit your needs.
Rich (BB code):
Sub DeleteRows()
    Application.ScreenUpdating = False
    Dim ws As Worksheet, wkbSource As Workbook, strExtension As String, arr As Variant, i As Long, strPath As String
    Set ws = ThisWorkbook.Sheets(1)
    arr = ws.Range("A2", ws.Range("A" & Rows.Count).End(xlUp)).Value
    strPath = ThisWorkbook.Path
    strExtension = Dir(strPath & "\*.xlsx")
    Do While strExtension <> ""
        Set wkbSource = Workbooks.Open(strPath & "\" & strExtension)
        For i = LBound(arr) To UBound(arr)
            With Sheets(1).Columns("A")
                .Replace what:=arr(i, 1), replacement:=""
                On Error Resume Next
                .SpecialCells(xlCellTypeBlanks).EntireRow.Delete
                On Error GoTo 0
            End With
        Next i
        wkbSource.Close False
        strExtension = Dir
    Loop
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,016
Messages
6,122,700
Members
449,092
Latest member
snoom82

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