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...