Hello, I've searched everywhere but can't quite find the exact solution. Basically I have a month in A1. I want to code a macro that will check A1 and then copy the worksheet, A1-E34 to the specific sheet that equals A1. I have 12 tabs, one for each month ready to be pasted into. For instance if January is in A1, I want the macro to copy the whole sheet and paste (values only, the sheet is live with formulas) to the correct sheet, January. Here is the recorded code I have but right now its set to paste to the RawData sheet. I cant get it to actually be the correct sheet, I just cant figure out how to get the code to look at A1 first.
Thanks for your help.
Sub CopyPaste()
' CopyPaste Macro
Sheets("MirrorCoverSheet").Select
Range("A1:E34").Select
Selection.Copy
Sheets("RawData").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select
Thanks for your help.
Sub CopyPaste()
' CopyPaste Macro
Sheets("MirrorCoverSheet").Select
Range("A1:E34").Select
Selection.Copy
Sheets("RawData").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select