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
 
Back
Top