I am trying to paste data from one worksheet to another and am not sure as to why it only works when using a standard range.
works:
doesn't work (run time error 1004):
These statements should be similar, or so I thought. I would like to be able to execute this copy using the second form.
Thanks
works:
Code:
Sheets("sheet1").Range("B4:Z10").Copy Destination:=Sheets("sheet2").Range("A1")
Code:
Sheets("sheet1").Range(Cells(4, 2), Cells(10, 26)).Copy Destination:=Sheets("sheet2").Range("A1")
Thanks