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
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top