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

David Gard

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 already have no rows, so I was running it to problems as using .DataBodyRange.Rows.Count on a table with no rows (just header and/or footer) causes errors.

I looked all over for a solution an could not find a whole one, so I hope my answer to this question will be useful to others in the future.

Siddharth Rout

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

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Get all rows apart from first and last

From Dev

Delete all occurrences of a pattern apart from the first one

From Dev

Printing out csv rows apart from first row

From Dev

Delete rows from table

From Dev

Delete all data from table but not the columns

From Dev

Delete rows from a data table that exists in another data table

From Dev

Delete rows from a data table that exists in another data table

From Dev

Applying Application.ScreenUpdating to all worksheet apart from first row

From Dev

Delete rows from a table without checking that they exist first

From Dev

SQL - Delete table with 372 million rows starting from first row

From Dev

Delete all but first 100 rows in table MYSQL

From Dev

How to delete all rows from excel except header in c#

From Dev

What is the best way in Android to delete all rows from a table

From Dev

How to delete all rows from table which has no FK relation

From Dev

What is the best way in Android to delete all rows from a table

From Dev

Delete all rows from MySQL table using PHP

From Dev

Delete rows from all tables

From Dev

Delete X rows from table

From Dev

Delete Rows of Data From Live Table inside Form?

From Dev

How to delete all but first two rows in a table (headers is the first row)

From Dev

PostgreSQL DELETE FROM (SELECT * FROM table FETCH FIRST 10 ROWS ONLY)

From Dev

Cumulative average using data from multiple rows in an Excel table

From Dev

Mysql - Delete All except 2 rows of all post_id1 from a table

From Dev

Are all SSD the same apart from capacity?

From Dev

Laravel migration failure apart from migration table

From Dev

MySQL delete data from a table

From Dev

Trigger to not delete Data from a table

From Dev

Data wont delete from table

From Dev

MySQL delete data from a table

Related Related

  1. 1

    Get all rows apart from first and last

  2. 2

    Delete all occurrences of a pattern apart from the first one

  3. 3

    Printing out csv rows apart from first row

  4. 4

    Delete rows from table

  5. 5

    Delete all data from table but not the columns

  6. 6

    Delete rows from a data table that exists in another data table

  7. 7

    Delete rows from a data table that exists in another data table

  8. 8

    Applying Application.ScreenUpdating to all worksheet apart from first row

  9. 9

    Delete rows from a table without checking that they exist first

  10. 10

    SQL - Delete table with 372 million rows starting from first row

  11. 11

    Delete all but first 100 rows in table MYSQL

  12. 12

    How to delete all rows from excel except header in c#

  13. 13

    What is the best way in Android to delete all rows from a table

  14. 14

    How to delete all rows from table which has no FK relation

  15. 15

    What is the best way in Android to delete all rows from a table

  16. 16

    Delete all rows from MySQL table using PHP

  17. 17

    Delete rows from all tables

  18. 18

    Delete X rows from table

  19. 19

    Delete Rows of Data From Live Table inside Form?

  20. 20

    How to delete all but first two rows in a table (headers is the first row)

  21. 21

    PostgreSQL DELETE FROM (SELECT * FROM table FETCH FIRST 10 ROWS ONLY)

  22. 22

    Cumulative average using data from multiple rows in an Excel table

  23. 23

    Mysql - Delete All except 2 rows of all post_id1 from a table

  24. 24

    Are all SSD the same apart from capacity?

  25. 25

    Laravel migration failure apart from migration table

  26. 26

    MySQL delete data from a table

  27. 27

    Trigger to not delete Data from a table

  28. 28

    Data wont delete from table

  29. 29

    MySQL delete data from a table

HotTag

Archive