Thread: Excel Fast Save
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Excel Fast Save

You could put this in your ThisWorkbook Code module:

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


In article ,
jswalsh33 wrote:

For instance is there a macro code for saving the workbook
automatically on exit?