| Junior Member with 4 posts. THREAD STARTER | | Join Date: Jan 2012 Experience: Intermediate | |
Speed up printing in excel Hi Tech Guys,
I need some help to speed up printing when using this macro. I am using a Brother QL 570 printer with 2'' non adhesive tape.
Thanks.
Range("H14").Select
Selection.Copy
ActiveWindow.ScrollWorkbookTabs Position:=xlLast
Sheets("Race Variables").Select
Range("B2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C2").Select
Application.CutCopyMode = False
Selection.Copy
Application.CutCopyMode = False
ActiveWindow.ScrollWorkbookTabs Position:=xlFirst
Sheets("Race 9").Select
ActiveWindow.ScrollWorkbookTabs Position:=xlLast
Sheets("Race Variables").Select
Selection.Copy
ActiveWindow.ScrollWorkbookTabs Position:=xlFirst
Sheets("Race 9").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
curPrtArea = ActiveSheet.PageSetup.PrintArea
myPrtArea = "n42:n48"
ActiveSheet.PageSetup.PrintArea = myPrtArea
ActiveSheet.PrintOut |