Is there a way (maybe a VBA) in Excel to select a set number of filtered rows based upon the current column? Current work flows regularly require us to select 25 or 100 filtered rows of the active column at a time.
Most macros I've come across during research appear to
- Select all data in a table or column
- Involve a pre-defined column.
I initially thought this would be a strait-forward macro to develop but have had difficulty. The code I found during research moves down a set number of rows but does not appear to factor in filtered rows when counting.
Sub MoveOneCellDownAFilteredList()
ActiveCell.Select
Range(Selection, Selection.Offset(2, 0)).Select
Do Until ActiveCell.EntireRow.Hidden = False
ActiveCell.Offset(2, 0).Select
Loop
End Sub
Any help is appreciated.