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

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
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,215,321
Messages
6,124,239
Members
449,149
Latest member
mwdbActuary

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