Hi, i'm searching for a code to go through a table and register only the visible rows of a filtered table. But all I get is it to register the first visible row of every block of rows:
It only registers the rows that are alterned in the filtered table, like of each block of filtered rows only takes the fist row and jumps to the next block, ignoring the rest of the visible rows of the previous. Hard to explain. Could somebody help?
Thanks.
(Honoured to participate in this olimpus of excel anyway
Code:
For i = 2 To 2000
With Worksheets("sheet1").AutoFilter.Range.SpecialCells(xlCellTypeVisible).Areas(i)(1, 6).Select
End With
...
next
It only registers the rows that are alterned in the filtered table, like of each block of filtered rows only takes the fist row and jumps to the next block, ignoring the rest of the visible rows of the previous. Hard to explain. Could somebody help?
Thanks.
(Honoured to participate in this olimpus of excel anyway