Ok I currently have one data base that tracks data on a month by month basis so there is a new tab or worksheet for each month. I have a second workbook I am using to processes this data. I have the current code below and it works great the only issue is I will have to maunaully go in and change the sheet it is pulling each month. "Sheets("APRIL 15).select". My question is; is there an equation that I could use to pull the sheet for the current month?
Current Code
Range("A1").Select
'
Workbooks.Open Filename:= _
"X:\GLOBLOPS\TRADE_PROCESSING\Procedures\Corporate Action\Full Call\Full Calls Tracker.xls"
Sheets("APRIL 15").Select
ActiveWindow.SmallScroll Down:=-27
Columns("A:I").Select
Selection.Copy
Windows("Copy of CorpAct_freeDeliver 3.13.15.xls").Activate
ActiveWindow.SmallScroll Down:=-12
ActiveSheet.Paste
Windows("Full Calls Tracker.xls").Activate
ActiveWindow.Close
Windows("Copy of CorpAct_freeDeliver 3.13.15").Activate
Sheets("Call Tracker").Select