VBA: Paste data in first cell from table

Roy_Excel_Island_Apps

Board Regular
Joined
Oct 9, 2018
Messages
71
Office Version
  1. 365
Platform
  1. Windows
Hi everyone!

I'm searching for code to import a data range into my empty table. I always get error 91 on the last line because the table is empty, so doesn't have cell1,1:

' CLEAR DATA IN TABLE
Set tblBusCollection = shtBusCollection.ListObjects("tblBusCollection")
tblBusCollection.DataBodyRange.Delete

' SET RANGE TO COPY
Dim rngCopy As Range
Set rngCopy = src.Worksheets("Bus&Collection").Range("A2:R" & LRrap)

Dim destRange As Range
Set destRange = tbl.DataBodyRange.Cells(1, 1)

destRange.Resize(rngPaste.Rows.Count, rngPaste.Columns.Count).Value = rngPaste.Value

I don't want to paste the range in cel A2 (first cell from table) because the table could shift down of to the right...

Does someone have a solution?

Regards, Roy
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
If I change tblBusCollection.DataBodyRange.Delete to tblBusCollection.DataBodyRange.Clear -> solved, but table could contain empty rows afterwards, so I would like to delete instead of clear the table, got me?
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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