Excel VBA to delete rows from workbooks from specific data set

Chase_Luke

New Member
Joined
Mar 30, 2022
Messages
3
Office Version
  1. 365
  2. 2016
My goal is to delete rows from multiple different workbooks by using a specific set of data as the criteria.

My data set for the deletion criteria is just over 18K rows (A2:A18052), containing both letters and numbers. Something like this:

ContractNumber
123123123
123ABC123ABC
345345345

So I want any rows with these contract numbers deleted from all workbooks in my file path. Contract Number in external workbooks is in column "C".

Here is what I have so far:
VBA Code:
Sub DeleteArray()
   
    Dim wb As Workbook
    Dim ws As Worksheet
    Dim MyArray As Variant
    Dim currentFile, currentSheet, lastRow, baseDirectory As String
    
    With ActiveSheet
        MyArray = Range("A2:A18052").Value
    End With

    baseDirectory = "[folder path for external workbooks]"
    currentFile = Dir(baseDirectory)
    While (currentFile <> "")
        Workbooks.Open baseDirectory + currentFile
        For Each currentSheet In Workbooks(currentFile).Worksheets
        lastRow = currentSheet.Cells(currentSheet.Rows.Count, "C").End(xlUp).Row
        For j = 1 To lastRow
            If InStr(1, LCase(CStr(currentSheet.Cells(j, "C").Value)), MyArray) > 0 Then
                currentSheet.Cells(j, 1).EntireRow.Delete
                j = j - 1
                lastRow = lastRow - 1
                Exit For
            End If
            Next
        Next
        Workbooks(currentFile).Save
        Workbooks(currentFile).Close
        currentFile = Dir
    Wend

End Sub

I have an issue with the InStr function line -
VBA Code:
            If InStr(1, LCase(CStr(currentSheet.Cells(j, "C").Value)), MyArray) > 0 Then
I basically used this to look up the deletion criteria, but is there a different function I can use? Or can I set it up differently to get it to recognize my array?
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
You can't use a whole array with InStr. You need another loop which applies each array element to InStr. Also, when deleting rows it's generally better to start at the bottom, so that you don't have to update loop variables when a row is deleted. With these changes your For j = ... Next loop becomes:
VBA Code:
            For j = lastRow To 1 Step -1
                Dim i As Long
                For i = 1 To UBound(MyArray)
                    If InStr(1, LCase(CStr(currentSheet.Cells(j, "C").Value)), MyArray(i, 1)) > 0 Then
                        currentSheet.Cells(j, 1).EntireRow.Delete
                        Exit For
                    End If
                Next
            Next
Note that you could avoid the inner loop above and call InStr just once by creating a string of all the deletion criteria and swapping the InStr string arguments.

Also, do you really mean to use LCase? With that, 123ABC123ABC in the workbooks doesn't match 123ABC123ABC in MyArray.
 
Last edited:
Upvote 0
Solution
Ahh...I had LCase in there when I was playing with using names as the deletion criteria instead of the Contract Number. It is not needed now. I removed LCase and used your changes and it works now. Many, many thanks!
 
Upvote 0
Note that you could avoid the inner loop above and call InStr just once by creating a string of all the deletion criteria and swapping the InStr string arguments.
Here's the macro with my idea:
VBA Code:
Public Sub Find_Criteria_Delete_Rows()
   
    Dim wb As Workbook
    Dim ws As Worksheet
    Dim MyArray As Variant
    Dim currentFile As String, currentSheet As Worksheet, lastRow As Long, baseDirectory As String
    Dim j As Long
    Dim deletionList As String
    
    With ActiveSheet
        MyArray = .Range("A2", .Cells(.Rows.Count, "A").End(xlUp)).Value
    End With
    
    deletionList = "|"
    For j = 1 To UBound(MyArray)
        deletionList = deletionList & MyArray(j, 1) & "|"
    Next
    
    baseDirectory = "C:\Folder\Path\"   'CHANGE AS NEEDED
    currentFile = Dir(baseDirectory)
    While currentFile <> vbNullString
        Set wb = Workbooks.Open(baseDirectory & currentFile)
        For Each currentSheet In wb.Worksheets
            lastRow = currentSheet.Cells(currentSheet.Rows.Count, "C").End(xlUp).Row
            For j = lastRow To 1 Step -1
                If InStr(1, deletionList, "|" & currentSheet.Cells(j, "C").Value & "|", vbTextCompare) > 0 Then
                    currentSheet.Cells(j, 1).EntireRow.Delete
                End If
            Next
        Next
        wb.Close SaveChanges:=True
        currentFile = Dir
    Wend

End Sub
That should be much faster because it doesn't loop through the 18K criteria rows for each row in the opened workbooks. The InStr uses vbTextCompare so is case-insensitive.
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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