I have a column with jobs, and I am trying to delete every row with job "A". However, I am not sure how to reference the active cell's row in the range function?
basically I'm trying something like this(not working):
If ActiveCell Like "A*" Then
Rows(ActiveCell.row:ActiveCell.row).Select
Selection.Delete Shift:=xlUp
end If
basically I'm trying something like this(not working):
If ActiveCell Like "A*" Then
Rows(ActiveCell.row:ActiveCell.row).Select
Selection.Delete Shift:=xlUp
end If