Please take a moment to review the Forum Rules about posting code. Refer too Rule No. 3 about code tags.
http://www.excelforum.com/forum-rule...rum-rules.html
For your code after each time you filter, you would have to delete (see red). Otherwise you are just filtering the data. Try:
Sub mandurayx()
With Application
.Calculation = xlCalculationManual
.ScreenUpdating = False
End With
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99810, xlOr, 99820
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99837, xlOr, 99838
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99840, xlOr, 99841
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99842, xlOr, 99844
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99845, xlOr, 99846
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 99850, xlOr, 99885
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 295038, xlOr, 295039
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
Range("A1:A" & Range("A" & Rows.Count).End(3).row).AutoFilter 1, 295040
Range("A2:A" & Range("A" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
ActiveSheet.AutoFilterMode = False
With Application
.Calculation = xlCalculationAutomatic
.ScreenUpdating = True
End With
End Sub
Bookmarks