I had created a macro to copy the data and paste into another sheet.
The cell reference where the data needs to be pasted is in the last column of table.
Range A2:E2 needs to be copied and paste at "A2" (mentioned in "H2")
The below code constantly gives and error "Object Required"
Google Doc Version of the Worksheet
Sub Reconcile()
Set i = Sheets("Data")
Set e = Sheets("Final")
Dim r1 As Range
Dim r2 As Variant
Dim j
j = 2
Set r1 = i.Range(Cells(j, 1), Cells(j, 5))
Set r2 = i.Cells("I" & j).Value
Do Until IsEmpty(i.Range("A" & j))
r1.Select
Selection.Copy
e.Range(r2).Select
Selection.Paste
j = j + 1
Loop
End Sub
Try the following code (in the sample sheet and in the description the target is in
H
column, notI
as in sample VBA)EDIT:
I don't think you can achieve that without a loop, but I have edited the code to:
On my computer test with 18000 rows finished in less than 3 seconds.
You didn't dimension all your variables. Let me know if it doesn't fix your error: