Reputation: 61
With this line you select all cells of table1, including headers:
ActiveSheet.ListObjects("Table1").Range.Select
I need to select all objects save for the headers.
Upvotes: 1
Views: 7270
Reputation: 49998
Select
.DataBodyRange
"represents the range of values, excluding the header row, in a table."Use ActiveSheet.ListObjects("Table1").DataBodyRange
.
Upvotes: 6