How come I dont have auto-save in the add-ons menu?

chrisdab

Board Regular
Joined
Mar 11, 2006
Messages
72
How come I dont have auto-save in the add-ons menu?
I dont even notice it on the microsoft office website. I have office xp sp3, excel 2002.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Thanks but I dont want autorecover. I want autosave, preferably to a second file or even overwrite the first
 
Upvote 0
then an option would be "OnTime"
open workbook without enabling macros
paste the code and close
reopen with macros anabled

in the thisworkbook-module
Code:
Option Explicit

Private Sub Workbook_Open()
sec = 300 '= 5 minutes
Run "do_something"
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Run "stop_it"
End Sub
in a "normal" module
Code:
Option Explicit

Public sec As Integer
Public when As Variant

Sub do_something()
when = Now + sec / 60 / 60 / 24
Application.OnTime when, "do_something"
'here your save code
'something like the next line
ThisWorkbook.Save
End Sub

Private Sub stop_it()
Application.OnTime EarliestTime:=when, Procedure:="do_something", schedule:=False
End Sub
kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,215,447
Messages
6,124,907
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top