I want to delete all rows in a table EXCEPT for the first row in the databodyrange. Using tbl.DataBodyRange.Rows.Count, I plan to delete that many -1.
The problem I'm having is figuring out how to select my starting row in the databodyrange down to the last row of the table.
I thought of using this code, but not sure how to select more than one row with it (if that's even possible):
Your recommendations, please?
The problem I'm having is figuring out how to select my starting row in the databodyrange down to the last row of the table.
I thought of using this code, but not sure how to select more than one row with it (if that's even possible):
VBA Code:
ActiveSheet.ListObjects("tbl").ListRows(3).Range.Select
Your recommendations, please?