Why doesn't this code save my document as "planning 2011.xlsm" when clicked on save?
This code doesn't save anything !
This code doesn't save anything !
Code:
Set fd = Application.FileDialog(msoFileDialogSaveAs)
With fd
.AllowMultiSelect = False
.InitialView = msoFileDialogViewDetails
.Title = "Choose file location..."
.InitialFileName = "planning 2011.xlsm"
.Show
End With