I am trying to copy and paste information on another sheet that isnt the active sheet. Here is my code It is giving me the error on the first line and im not sure why.
Code:
Sub Copy_Paste()
Sheets("Dough Information").Range("H3:J152").Select
Selection.Copy
Sheets("Dough Information").Range("K3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
End Sub