is this copy method equal to this assignment?

earp_

Active Member
Joined
Apr 30, 2008
Messages
305
Hi i have this
Worksheets("mySheet").range("A10:E114").Copy Destination:=Worksheets("mySheet").range("A10:E114")

and this

Worksheets("mySheet").Range("A10:E114") = Worksheets("mySheet").Range("A10:E114").Value

Do they give me the same result?
I think they do, but I have a crash problem with the second one.Strange because it works for a while and after it crashes.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
The first one will copy everything - formula, formatting, validation, etc. The second will simply place the specified values in the range.

The only problem I could foresee is if one of the cells in the range you're copying from contains an error.

Also, you should probably use the following:
Worksheets("mySheet").Range("A10:E114").Value = Worksheets("mySheet").Range("A10:E114").Value
 
Upvote 0

Forum statistics

Threads
1,214,621
Messages
6,120,568
Members
448,972
Latest member
Shantanu2024

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