How to get the range of the visible rows after applying an advanced filter in Excel (VBA)

ActiveSheet.Range("A1:A100").Rows.SpecialCells(xlCellTypeVisible)

This yields a Range object.

Leave a Comment