ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do I have Excel automatically save a file periodically? (https://www.excelbanter.com/excel-discussion-misc-queries/245988-how-do-i-have-excel-automatically-save-file-periodically.html)

[email protected]

How do I have Excel automatically save a file periodically?
 
I need to have Excel save a file every 30 minutes without any input from the
user. It can overwrite the previous save each time. The "auto-recover"
doesn't give us what we need.

Dave Peterson

How do I have Excel automatically save a file periodically?
 
xl2k and lower had an addin called autosave.xla.

If you can find an old version of that addin (old CD/floppy or an old pc???),
it'll work with newer versions of excel (through xl2007 at least).

ps.

Gord Dibben posted this:

Autosave.xla from Office 2000 or 97 will work with Excel 2002 or 2003.
If you have a previous copy, move it to your Office\Library.
To download the 97 version see here........
http://www.stat.jmu.edu/trep/Marchat/sp2001/Library.htm

wrote:

I need to have Excel save a file every 30 minutes without any input from the
user. It can overwrite the previous save each time. The "auto-recover"
doesn't give us what we need.


--

Dave Peterson

Jim Thomlinson

How do I have Excel automatically save a file periodically?
 
That requires a macro or 2.
Right click the XL icon in the upper left hand corner of Excel and select
View Code. Paste the following in the code window that opens up.

Private Sub Workbook_Open()
Application.OnTime Now + TimeSerial(0, 30, 0), "SaveMe"
End Sub

On the Insert menu select Module. Paste the following.

Public Sub SaveMe()
ThisWorkbook.Save
Application.OnTime Now + TimeSerial(0, 30, 0), "SaveMe"
End Sub

Next time you open this workbook it will background save the file for you...
--
HTH...

Jim Thomlinson


" wrote:

I need to have Excel save a file every 30 minutes without any input from the
user. It can overwrite the previous save each time. The "auto-recover"
doesn't give us what we need.


Gord Dibben

How do I have Excel automatically save a file periodically?
 
Dave

That site is no longer available.

If OP wants to email me at gorddibbATshawDOTca I can send a copy of
Autosave.xla which works with 2007 with or without prompt.


Gord

On Tue, 20 Oct 2009 13:01:58 -0500, Dave Peterson
wrote:

xl2k and lower had an addin called autosave.xla.

If you can find an old version of that addin (old CD/floppy or an old pc???),
it'll work with newer versions of excel (through xl2007 at least).

ps.

Gord Dibben posted this:

Autosave.xla from Office 2000 or 97 will work with Excel 2002 or 2003.
If you have a previous copy, move it to your Office\Library.
To download the 97 version see here........
http://www.stat.jmu.edu/trep/Marchat/sp2001/Library.htm

wrote:

I need to have Excel save a file every 30 minutes without any input from the
user. It can overwrite the previous save each time. The "auto-recover"
doesn't give us what we need.




All times are GMT +1. The time now is 03:10 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com