Public Sub FirstRowInPivottable()
Dim pt As PivotTable
Set pt = ActiveSheet.PivotTables("TCD1")
On Error Resume Next
MsgBox pt.DataBodyRange.Cells(1).Row
MsgBox pt.ColumnRange.Cells(1).Row
MsgBox pt.TableRange1.Cells(1).Row
MsgBox pt.PageRange.Cells(1).Row
End Sub