VBAフィルタされた行を選択
フィルター後の見えている行だけを選択する
オッケーなコード
肝は .SpecialCells(xlCellTypeVisible)
オッケーなコード
Dim r As Range
Set r = ActiveSheet.Range("A1").CurrentRegion.SpecialCells(xlCellTypeVisible)
r.Select
Debug.Print Selection.Rows.Count
肝は .SpecialCells(xlCellTypeVisible)