Make Copy and Paste Run Faster with Assignments

norts55

Board Regular
Joined
Jul 27, 2012
Messages
183
I have a lot of different recorded macros that do a lot of copying and pasting. I never really cared about the fact that these macros are probably not the most efficiently written code. But I watched a video about making your code run 1000 times faster and it has me thinking that maybe I should try to write the code better than what just gets recorded during the record macro - because some of my macro are slow.
Below is a simple recorded code. The video talked about assignments but I've tried to modify this code to what the person in the video was doing with no luck.
Is there a way to do assignments with this code?

VBA Code:
    Sheets("Bid Sheet").Select
    Range("K2").Select
    Selection.Copy
    Sheets("Bid Sheet-Org").Select
    Range("K2").Select
    ActiveSheet.Paste
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.

Forum statistics

Threads
1,215,077
Messages
6,122,991
Members
449,094
Latest member
masterms

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