Randy,
Try something like
Activeworkbook.Saveas Filename:="C:\MyFiles\TestFile" & Format(Date,"dd
mmm yyyy") & ".xls"
if you want just the date, or
ActiveWorkbook.SaveAs Filename:="C:\MyFiles\TestFile" & Format(Time, "dd
mmm yyyy hh:mm:ss") & ".xls"
if you want the time as well
--
HTH
Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
Randy Welker said:
Is these some way I can incorporate the now() function with the saveas
function in a macro so that the file name is appended or replaced with the
current date?