Copy from wb2 and paste into ListObject in active workbook

Joined
Feb 15, 2018
Messages
15
Hi. I get an IE generated report once a week. I want to copy cells A4:E4 to the last value in those columns from this workbook (report.xls), from worksheet (report) and paste them into Table1 of the active workbook.

What I have tried so far always overwrites the Table and ends up converting the table back to a normal range.

Your help is much appreciated
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
This code will copy A4:E4 from the first sheet in 'Report.xls' to Table1 on the active sheet in the active workbook.
Code:
Dim tbl As ListObject
Dim rw As ListRow

    Set tbl = ActiveWorkbook.ActiveSheet.ListObjects("Table1")
    
    Set rw = tbl.ListRows.Add
    
    Workbooks("Report.xls").Sheets(1).Range("A4:E4").Copy rw.Range
 
Upvote 0
This code will copy A4:E4 from the first sheet in 'Report.xls' to Table1 on the active sheet in the active workbook.
Code:
Dim tbl As ListObject
Dim rw As ListRow

    Set tbl = ActiveWorkbook.ActiveSheet.ListObjects("Table1")
    
    Set rw = tbl.ListRows.Add
    
    Workbooks("Report.xls").Sheets(1).Range("A4:E4").Copy rw.Range


Thank You. I am trying to copy everything in columns A4:E4. I tried something like this:

Code:
i = Range("A4:E4").End(xlDown).Offset(1).Row

but, it now pastes outside of the Table1.
 
Upvote 0

Forum statistics

Threads
1,215,506
Messages
6,125,193
Members
449,213
Latest member
Kirbito

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