Have current date display in File Name
Is this what you're after...
ActiveWorkbook.SaveAs Filename:= _
"C:\Payable\" & Format(Now, "MM-DD-YYYY") & " Payable.xls", _
FileFormat:=xlExcel5, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
Regards
Darren
|