I would like to copy-paste a table row by row from one Workbook1 to Workbook2 ( on an interval of time ). In Workbook2 every row copied has its own sheet, the next copy-paste is gonna be on the next empty row. ( in the picture that I've attached Audi row is gonna have its own sheet, where every update is gonna go in the next empty row, the same for the others), here is the code that I tried only for one row of table but it doesn`t works:
Sub Updateeee()
Application.OnTime Now + TimeValue("00:00:15"), "lalala"
End Sub
Sub lalala()
Workbooks("Workbook1.xls").Worksheets("Sheet1").Range("B2:R2").Copy
ActiveCellRow.Offset(1, 0).Activate
Workbooks("Workbook2.xls").Worksheets("Sheet1").Range("B2").Paste
Call Updateeee
End Sub