• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Is use of "Destination:=" is safe for pasting data

ThrottleWorks

Excel Ninja
Hi,

I am using below mentioned code to paste data.
I noticed use of "Destination:=" while browsing some excel related search on internet.

Would like to know is it safe to use "Destination:=" for pasting data.
Till now I have not faced any issues while using this line just wanted to know out of curiosity.

Can anyone please help me in this.

Code:
Rng.Copy Destination:=Worksheets("AAA").Cells(1, 36)
 
It's safe!!

Other's method like as

Sheets("Sheet2").Range(Target.Address) = Sheets("Sheet2").Range(Target.Address)

or paste special also would be used depend on the situation.
 
Back
Top