Delete Rows Macro on mutiple sheets

BradH

New Member
Joined
Jan 25, 2010
Messages
44
I have a workbook with about 120 sheets. I need a macro/vba that will search through half of these sheets and delete the entire row if it contains #N/A. The other half of these sheets also contain the #N/A, but I don't want it deleted in them.

Thanks
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I have a workbook with about 120 sheets. I need a macro/vba that will search through half of these sheets and delete the entire row if it contains #N/A. The other half of these sheets also contain the #N/A, but I don't want it deleted in them.

Thanks
Sorry Brad, but how do we help you?
See my signature.
 
Upvote 0
And how are we to know what 60 sheets?

Is it sheets 1 to 60?

And in what column on the sheet should we look for #N/A

If I said "go to store and get me something". Would you know what I wanted?
 
Upvote 0
Hi BradH,

assuming half of your worksheets is from the 1st worksheet to num 60, and as long as any column, be it 1 or more, contains "#N/A", the entire row will be deleted, you can try the code below. Be sure to test on some test data because chances are delete is irreversible in VBA.
Code:
Sub test()

Dim c As Range
Dim i As Integer

Application.ScreenUpdating = False

For i = 1 To 60

    With ThisWorkbook.Sheets(i)

        Do
        
            On Error Resume Next
            c.EntireRow.Delete
            Set c = .Cells.Find(What:="#N/A", _
                                After:=.Cells(Rows.Count, 1), _
                                LookIn:=xlValues, _
                                LookAt:=xlPart, _
                                MatchCase:=False)
            
        Loop While Not c Is Nothing
    
    End With
    
Next i

Application.ScreenUpdating = True

End Sub
 
Upvote 0
Code:
Sub test()

Dim c As Range
Dim i As Integer


Application.ScreenUpdating = False


For i = 66 To 130


    With ThisWorkbook.Sheets(i)


        Do
        
            On Error Resume Next
            c.EntireRow.Delete
            Set c = .Cells.Find(What:="#N/A", _
                                After:=.Cells(Rows.Count, 1), _
                                LookIn:=xlValues, _
                                LookAt:=xlPart, _
                                MatchCase:=False)
            
        Loop While Not c Is Nothing
    
    End With
    
Next i


Application.ScreenUpdating = True


End Sub

I went with this, and it works, but after 5 minutes I stopped it (To make sure it was actually working) and it had only completed 10 of the 65 sheets.

The #N/A is in every column, A-E on each sheet. If its in one column, its in all 5. Its an index lookup formula which is returning an error because there are no matches.

Any way I can improve this to run faster?
 
Upvote 0
edit
 
Last edited:
Upvote 0
Try this
Code:
Sub test()

    Dim i As Long
    
    Application.ScreenUpdating = False
    
    For i = 66 To 130
        With ThisWorkbook.Sheets(i)
            On Error Resume Next
            Columns(10).SpecialCells(xlFormulas, xlErrors).EntireRow.Delete
            On Error GoTo 0
        End With
    Next i

End Sub
One word of warning, this will delete any rows containing an error, not just #N/A
 
Upvote 0
Hi BradH, does your data have headers? You can try this

Code:
Sub test()

Dim RngToFilter As Range
Dim c As Range
Dim i As Integer

Application.ScreenUpdating = False
Application.DisplayAlerts = False

i = 66
For i = 66 To 130

    Set RngToFilter = ThisWorkbook.Worksheets(i).UsedRange
    RngToFilter.AutoFilter 1, "#N/A"
    RngToFilter.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
    If ActiveSheet.AutoFilterMode = True Then ActiveSheet.AutoFilterMode = False
    
    Set c = ThisWorkbook.Worksheets(i).Cells.Find(What:="#N/A", _
                                                    After:=Cells(Rows.Count, 1), _
                                                    LookIn:=xlValues, _
                                                    LookAt:=xlPart, _
                                                    MatchCase:=False)
                                
    If Not c Is Nothing Then
    
        c.EntireRow.Delete
    
    End If

Next i

Application.ScreenUpdating = True
Application.DisplayAlerts = True

End Sub
 
Upvote 0
Try this
Code:
Sub test()

    Dim i As Long
    
    Application.ScreenUpdating = False
    
    For i = 66 To 130
        With ThisWorkbook.Sheets(i)
            On Error Resume Next
            Columns(10).SpecialCells(xlFormulas, xlErrors).EntireRow.Delete
            On Error GoTo 0
        End With
    Next i

End Sub
One word of warning, this will delete any rows containing an error, not just #N/A

This did nothing.
 
Upvote 0
Hi BradH, does your data have headers? You can try this

Code:
Sub test()

Dim RngToFilter As Range
Dim c As Range
Dim i As Integer

Application.ScreenUpdating = False
Application.DisplayAlerts = False

i = 66
For i = 66 To 130

    Set RngToFilter = ThisWorkbook.Worksheets(i).UsedRange
    RngToFilter.AutoFilter 1, "#N/A"
    RngToFilter.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
    If ActiveSheet.AutoFilterMode = True Then ActiveSheet.AutoFilterMode = False
    
    Set c = ThisWorkbook.Worksheets(i).Cells.Find(What:="#N/A", _
                                                    After:=Cells(Rows.Count, 1), _
                                                    LookIn:=xlValues, _
                                                    LookAt:=xlPart, _
                                                    MatchCase:=False)
                                
    If Not c Is Nothing Then
    
        c.EntireRow.Delete
    
    End If

Next i

Application.ScreenUpdating = True
Application.DisplayAlerts = True

End Sub

This worked, but it only turned the filter off on the first sheet....causing all but the top row (which is not a header, but will never be a deleted row) to be hidden
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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