P prazad82 Member Jan 31, 2013 #1 Hello, Is there a way to autosave (within 5 seconds) a file after a macro is run? Thanks
Debraj Excel Ninja Jan 31, 2013 #2 Yes.. there is a lots of way to save a file.. Code: Application.AutoRecover.Time = 0.0833 (No less than 1 will not work.. :) Application.OnTime Now + TimeValue("00:00:15"),... but if you gives us what exactly you want.. then we can say that.. "You don't need to wait for 5 second.. you can add ThisWorkbook.Save at the end of the Macro.. just before End Sub" Regards, Deb
Yes.. there is a lots of way to save a file.. Code: Application.AutoRecover.Time = 0.0833 (No less than 1 will not work.. :) Application.OnTime Now + TimeValue("00:00:15"),... but if you gives us what exactly you want.. then we can say that.. "You don't need to wait for 5 second.. you can add ThisWorkbook.Save at the end of the Macro.. just before End Sub" Regards, Deb