I just want to get value from one cell in TotalsRowRange. If I write
everything works fine. But how I can select that cell in TotalsRowRange by using headers row name? I can select column like next
Next does not work
Thanks in advance.
Code:
myTable.TotalsRowRange(9).Select
Code:
myTable.ListColumns("Stake").DataBodyRange.Select
Code:
myTable.TotalsRowRange("Stake").Select
Thanks in advance.