Copy Destination Using Cell Integers in Range

vthokienj

Board Regular
Joined
Aug 1, 2011
Messages
105
Office Version
  1. 365
Platform
  1. Windows
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:
Code:
Sheets("sheet1").Range("B4:Z10").Copy Destination:=Sheets("sheet2").Range("A1")
doesn't work (run time error 1004):
Code:
Sheets("sheet1").Range(Cells(4, 2), Cells(10, 26)).Copy Destination:=Sheets("sheet2").Range("A1")
These statements should be similar, or so I thought. I would like to be able to execute this copy using the second form.

Thanks
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
You need to qualify the Cells property as well as the Range property, otherwise the active sheet will be used:

Code:
With Sheets("sheet1")
    .Range(.Cells(4, 2), .Cells(10, 26)).Copy Destination:=Sheets("sheet2").Range("A1")
End With
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,326
Members
452,635
Latest member
laura12345

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