How to save an Excel Sheet without a confirmation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Anybody knows how to close an Excel object and save the excel sheet but without the interruption (confirmation)

Thanks in advance
 
* "=?Utf-8?B?TGkgUGFuZw==?= said:
Anybody knows how to close an Excel object and save the excel sheet but without the interruption (confirmation)?

\\\
With Application
.DisplayAlerts = False
ThisWorkbook.SaveAs("D:\file.xls")
.DisplayAlerts = True
End With
///
 
Back
Top