I have a few questions:
1) I am trying to delete all the rows in Col 4 with #, the code I have is this:
ActiveSheet.Range("$A$1:$AJ$11576").AutoFilter Field:=4, Criteria1:="#"
ActiveSheet.AutoFilter.Range.Offset(1, 0).Rows.SpecialCells(xlCellTypeVisible).Delete (xlShiftUp)
2) How do I add multiple things I wanted deleted not just #, like *, & in Col 4
3) I also have a Col 10 with dates "'5/2/2019" "'10/2/2018", how do I delete everything besides last months and year. So I run this report in June and trying just to run May numbers.
Thanks!
1) I am trying to delete all the rows in Col 4 with #, the code I have is this:
ActiveSheet.Range("$A$1:$AJ$11576").AutoFilter Field:=4, Criteria1:="#"
ActiveSheet.AutoFilter.Range.Offset(1, 0).Rows.SpecialCells(xlCellTypeVisible).Delete (xlShiftUp)
2) How do I add multiple things I wanted deleted not just #, like *, & in Col 4
3) I also have a Col 10 with dates "'5/2/2019" "'10/2/2018", how do I delete everything besides last months and year. So I run this report in June and trying just to run May numbers.
Thanks!