Clear and resize a table

drop05

Active Member
Joined
Mar 23, 2021
Messages
285
Office Version
  1. 365
Platform
  1. Windows
Hello i have a table called Tbl_JE on a sheet called JEP. I am trying to clear it and then resize it that way something can be copy and pasted into it again
I got code to clear it but when trying to do a resize i am getting errors. Trying to find the best way to do so

VBA Code:
Sub cleardata()

    'Definf Sheet and table name
     With Sheets("JEP").ListObjects("Tbl_JEe")
        
        'Check If any data exists in the table
        If Not .DataBodyRange Is Nothing Then
            'Clear Content from the table
            .DataBodyRange.ClearContents
        End If
        
    End With

    Dim tbl As ListObject
    Set tbl = ActiveSheet.ListObjects("Tbl_JE")
    tbl.Resize tbl.Range.CurrentRegion
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
How about:

VBA Code:
Sub ClearData()
  Dim tbl As ListObject

  Set tbl = Sheets("JEP").ListObjects("Tbl_JEe")
  'Delete all table rows except first row
  With tbl.DataBodyRange
    If .Rows.Count > 1 Then
      .Offset(1, 0).Resize(.Rows.Count - 1, .Columns.Count).Rows.Delete
    End If
  End With

  'Clear out data from first table row
  tbl.DataBodyRange.Rows(1).ClearContents
End Sub

Whatever you are going to paste, paste it in the first row of the table.

----- --
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,750
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top