I'm trying to make an autosave function in Excel as the current Microsoft one does not word for local file.
Here is the VB I have come up with. But still only macro is running, not giving Windows any control. The DoEvents
seems not to work.
Sub Auto_save()
Do While 1 < 2
ActiveWorkbook.Save
Application.Wait (Now + TimeValue("0:00:05"))
DoEvents
Loop
End Sub
(I'm using Excel 365 Pro Plus.)