Sub save_itas3()
fname = Application.GetSaveAsFilename _
(InitialFilename:=Range("a1") & " " & WorksheetFunction.Substitute(Date, "/", "_"), _
FileFilter:="Excel Files (*.xls),*.xls", FilterIndex:=0, Title:="Save As")
If fname <> "False" Then
ActiveWorkbook.SaveAs Filename:=fname
End If
End Sub
Can someone break this down for me? I am looking for something similar, yet simpler.
More along these lines, with the cell A1 containing a date of 2002/02/25:
Public Sub SaveAsA1()
ThisFile = Range("A1").Value
ActiveWorkbook.SaveAs FileName:="C:data" & ThisFile
End Sub