I am currently having a problem compiling a Macro that I am trying to make. I am either trying to use a Named Range or the actual range on a different sheet and copy and paste that data into the current sheet. I want the data to post to the current sheet so I can run this Macro on every day of the month. Here is what I have compiled but for some reason I cannot use the ActiveSheet. Attached is my code.
Sub Macro1()
' Daily Route Sheet
Sheets("2").Select
ActiveCell.Range("A1:H44").Select
Selection.Copy
Sheets("ActiveSheet").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub