Well. If I have for example a table with a column "countries" and other one "cities" And I make a Filter on Countries. How I can get the row number from each register filtered using VBA?
I like to get rows numbers: 2 and 6.
Thanks in advance.
Use the ListRows
method of your table, looping through each row.
In this case you can print all the rows in the table that passes your criteria of Not ...Hidden
.
Sub printUnhiddenRows()
Dim r As ListRow, tbl As ListObject
Set tbl = ThisWorkbook.Worksheets(1).ListObjects("Table1")
For Each r In tbl.ListRows
If Not r.Range.Rows.Hidden Then Debug.Print r.Range.Row
Next r
End Sub
Worksheets(1)
if the sheet is not #1 in the worksheet collection..ListObjects("Table1")
if the table is named something else.