Delete all data rows from an Excel table (apart from the first)

后端 未结 9 2139
执笔经年
执笔经年 2020-12-01 09:16

Just recently I\'ve been trying to delete all data rows in a table, apart from the first (which needs to just be cleared)

Some of the tables being actioned could alr

9条回答
  •  春和景丽
    2020-12-01 10:10

    Your code can be narrowed down to

    Sub DeleteTableRows(ByRef Table As ListObject)
        On Error Resume Next
        '~~> Clear Header Row `IF` it exists
        Table.DataBodyRange.Rows(1).ClearContents
        '~~> Delete all the other rows `IF `they exist
        Table.DataBodyRange.Offset(1, 0).Resize(Table.DataBodyRange.Rows.Count - 1, _
        Table.DataBodyRange.Columns.Count).Rows.Delete
        On Error GoTo 0
    End Sub
    

    Edit:

    On a side note, I would add proper error handling if I need to intimate the user whether the first row or the other rows were deleted or not

提交回复
热议问题