You need to specify the name of the file as well.Originally Posted by BexleyManor
[VBA]
Dim Desktop As Object
Dim MyPath As String
Dim MyName As String
Set Desktop = CreateObject("WScript.Shell")
MyPath = Desktop.SpecialFolders("Desktop")
MyName = "DailyInputs" & Format(Date, "ddmmyy") & ".xls"
ThisWorkbook.SaveAs (MyPath & "\" & MyName)
[/VBA]