WindsorKnot
Board Regular
- Joined
- Jan 4, 2009
- Messages
- 160
Hi all,
I copied a snipet of my code below. I need to simply determine how to make this process a little faster, as I have to do this for 30 subdivisions. More specifically, is there a more effiecent means to doing the pastespecial arguement, as I think this may speed things up a bit
Thanks
I copied a snipet of my code below. I need to simply determine how to make this process a little faster, as I have to do this for 30 subdivisions. More specifically, is there a more effiecent means to doing the pastespecial arguement, as I think this may speed things up a bit
Thanks
Code:
Sub RateExhibits_Update()
Application.ScreenUpdating = False
' Update Total Exhibit
Sheets("Rate Summary-Updated").Range("D4:G76") _
.Copy Sheets("Total").Range("D20").Select
Sheets("Total").Range("D20").Select
Selection.PasteSpecial Paste:=xlPasteValues, _
Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub