Maybe:
Sub LennyC91()
Dim i As Long, y As Long
y = Range("A" & Rows.Count).End(3).row
Range("A" & y).Activate
ActiveSheet.Cells.Find(What:="Technology", After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious, MatchCase:=False).Activate
i = ActiveCell.row + 1
Rows(i & ":" & y).Delete
Range("E1:E" & Range("E" & Rows.Count).End(3).row).AutoFilter 1, "0 Days"
Range("E2:E" & Range("E" & Rows.Count).End(3).row).SpecialCells(12).EntireRow.Delete
ActiveSheet.AutoFilterMode = False
End Sub
Bookmarks