I want to modify the following code so that it Save the file as "Invoices " and then the current month:
ActiveWorkbook.SaveAs Filename:="C:\Auto Invoices\Invoices Month.xls", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
Thus if we are in October, running the code would save the file as "Invoices October" or "Invoices Oct" if it is easier.
Can anyone supply me with this code ?
Thanks in advance
ActiveWorkbook.SaveAs Filename:="C:\Auto Invoices\Invoices Month.xls", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
Thus if we are in October, running the code would save the file as "Invoices October" or "Invoices Oct" if it is easier.
Can anyone supply me with this code ?
Thanks in advance