Hi,
I found the following VBA through searching to save a workbook every 10 minutes
Private Sub Workbook_Open()
Application.OnTime Now + TimeValue("00:00:10"), "SaveWb"
End Sub
And
Sub SaveWb()
ThisWorkbook.Save
Application.OnTime Now + TimeValue("00:10:00"), "SaveWb"
End Sub
2...