i select a cell run a macro that changed the value of a cell and then reapply my autofilter.
However this often leaves the selected cell hidden.
How do I select the next visible cell down?
Code:
Sub Chase_month()
Cells(ActiveCell.Row, "L").Value = Date + 28
ActiveSheet.AutoFilter.ApplyFilter
End Sub
However this often leaves the selected cell hidden.
How do I select the next visible cell down?