I have run filter through my data to make it smaller. However, when I run a loop
This will loop through ALL of my data, not just my filtered data. Is there a way to make this so that the activecell will only become the visible filtered cell?
Thank you!
Code:
Do
ActiveCell.Offset(0, 1).Select
If IsEmpty(ActiveCell) Then
ActiveCell.Offset(1, 0).Select
ActiveSheet.Cells(ActiveCell.Row, 1).Select
End If
Loop Until IsEmpty(ActiveCell)
Thank you!