unknownymous

Board Regular
Joined
Sep 19, 2017
Messages
249
Office Version
  1. 2016
Platform
  1. Windows
Hello Gurus,

Good day!

Could you possibly help me tweak the code below? Scenario is I have to delete the data that is below 500 including blanks and zeroes in Column E. Headers is located in Row A

Sub DeleteRowIF()

Dim zlr As Long
zlr = ActiveSheet.UsedRange.rows.Count
With Range("A2:AZ" & zlr)
.AutoFilter
.AutoFilter Field:=5, Criteria1:="<500"
.SpecialCells(xlCellTypeVisible).EntireRow.Delete
End With


End Sub

Appreciate the help. :)
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
This should be how you need it:
VBA Code:
Option Explicit
Sub DeleteRowIF()
    Dim zlr    As Long
    zlr = ActiveSheet.UsedRange.Rows.Count
    ActiveSheet.AutoFilterMode = False            '<- added
    With Range("A1:AZ" & zlr)                     '<- changed
        .AutoFilter Field:=5, Criteria1:="<500", Operator:=xlOr, Criteria2:="=" '<- changed
        .Offset(1).SpecialCells(xlCellTypeVisible).EntireRow.Delete '<- changed
    End With
    ActiveSheet.AutoFilterMode = False            '<- added
End Sub
 
Upvote 0
Solution
This should be how you need it:
VBA Code:
Option Explicit
Sub DeleteRowIF()
    Dim zlr    As Long
    zlr = ActiveSheet.UsedRange.Rows.Count
    ActiveSheet.AutoFilterMode = False            '<- added
    With Range("A1:AZ" & zlr)                     '<- changed
        .AutoFilter Field:=5, Criteria1:="<500", Operator:=xlOr, Criteria2:="=" '<- changed
        .Offset(1).SpecialCells(xlCellTypeVisible).EntireRow.Delete '<- changed
    End With
    ActiveSheet.AutoFilterMode = False            '<- added
End Sub
It's working! Thank you.
 
Upvote 0
Thanks for the positive feedback👍, glad having been of some help.
 
Upvote 0

Forum statistics

Threads
1,214,648
Messages
6,120,726
Members
448,987
Latest member
marion_davis

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