Automatic Save on exit

  • Thread starter Thread starter Ken_Gorham
  • Start date Start date
Ken,

You get prompted for a save if there have been any changes. Otherwise,
it'll take a macro. It goes in the ThisWorkbook module. Paste it in from
here.

Private Sub Workbook_BeforeClose(Cancel As Boolean)
ActiveWorkbook.Save
End Sub
 

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