****** To retrieve the current month, try this sample code. You will need to concatenate the month with the file name in your Save As routine,
MsgBox MonthName(Month(Now))
More code for the Save As part
***** Here is sample for the Save As part:
Month_Name = MonthName(Month(Now))
Year_Num = Year(Now)
ActiveWorkbook.SaveAs Filename:= "C:\Directory Path\Statistics" & Month_Name & Year_Num & ".xls"
How about
Dim strName As String
strName = "statistics_" & Format(Date, "mmmmyyyy") & ".xls"
ThisWorkbook.SaveAs strName
Gary As part of one of my macros, I wish to finish by saving the file with the current month in the title.
Re: More code for the Save As part
Thank you :-) That works perfectly
Mark