Gruppe
Datei
Problem
Wie kann ich die aktive Arbeitsmappe unter dem Datum, daß in Zelle A1 des 1. Arbeitsblattes steht speichern? Der Dateiname soll das Format TTMM.XLS, also z.B. 0312.XLS haben.
StandardModule: basMain
Sub Speichern()
Dim sFile As String, sPath As String
sPath = Application.DefaultFilePath & "\"
sFile = Range("A1").Value
sFile = Format(CDate(sFile), "yyyymmdd") & ".xls"
ActiveWorkbook.SaveAs sPath & sFile
End Sub