J
Jason Morin
Press Alt+F11, Insert > Module, and paste in the code
below:
Sub Aut
pen()
Application.OnTime Now + TimeValue("00:05:00"), "Closeit"
End Sub
Sub Closeit()
With ActiveWorkbook
.Save
.Close
End With
End Sub
below:
Sub Aut
Application.OnTime Now + TimeValue("00:05:00"), "Closeit"
End Sub
Sub Closeit()
With ActiveWorkbook
.Save
.Close
End With
End Sub