G
Guest
I'm trying to copy a variable range from A1:C ? (the last populated cell in
the range) of Sheet1 to the first available cell in Col A in Sheet 3
I've tried loads of things but none have worked. This is my latest attempt
but I get a Run-time error '424' Object required message....
Dim NextRow As Long
With Worksheets("Sheet3")
NextRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
Set grng = Range("A1:C1" & Range("C65536").End(xlUp).Row)
grng.Copy _
Destination:=Worksheets("Sheet3").Cells(NextRow, "A")
End With
I'd appreciate some help with the code ass I've run out of ideas now.
Many thanks
the range) of Sheet1 to the first available cell in Col A in Sheet 3
I've tried loads of things but none have worked. This is my latest attempt
but I get a Run-time error '424' Object required message....
Dim NextRow As Long
With Worksheets("Sheet3")
NextRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
Set grng = Range("A1:C1" & Range("C65536").End(xlUp).Row)
grng.Copy _
Destination:=Worksheets("Sheet3").Cells(NextRow, "A")
End With
I'd appreciate some help with the code ass I've run out of ideas now.
Many thanks