Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
In the personal book of macros ("Personal.xlsb") add an event to open the book ("ThisBook" module)
Private Sub Workbook_Open()
AutoSaveAllWorkbooks
End Sub
Public Sub AutoSaveAllWorkbooks()
Dim wb As Workbook
For Each wb In Application.Workbooks
wb.Save
Set wb = Nothing
Next
Application.OnTime Now + TimeValue("00:00:30"), "AutoSaveAllWorkbooks"
End Sub
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question