HairyHippy
Programmer
The following piece of code displays the SaveAs dialog box, exactly as desired when run but when the save button is hit, the dialog box disappears and the file has not been saved with the new file name. Any ides
Code:
Sub SaveAs()
Dim Filt As String
Dim FileName As Variant
Filt = "Microsoft Excel Workbook (*.xls),*.xls,"
FileName = Application.GetSaveAsFilename(Range("SaveClient") + " - " + Range("Deal"), filefilter:=Filt)
End Sub