View Single Post
 
Old 10-31-2015, 09:42 AM
NoSparks NoSparks is offline Windows 7 64bit Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

Perhaps you can glean something from this
Code:
Sub First_VisRowOfTable()
    
    Dim Tbl As Excel.ListObject
    Dim cel As Range
    
Set Tbl = ActiveSheet.ListObjects(1)    'first table on sheet

With Tbl
    For Each cel In Tbl.ListColumns(1).DataBodyRange.SpecialCells(xlCellTypeVisible)
        MsgBox cel.Row
        Exit For
    Next
End With

End Sub
Reply With Quote