Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Auto save in excel 2000 keeps reverting to 10 minutes

I keep trying to change the time between auto-saves to 30 minutes, but every
time I reopen excel 2000 it is back to 10 minutes. How do I get this change
to be permanent?

Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Auto save in excel 2000 keeps reverting to 10 minutes

Create a workbook with this code in a general module:

Option Explicit
Sub auto_open()

On Error Resume Next
Workbooks("autosave.xla").Excel4IntlMacroSheets("L oc Table") _
.Range("ud01n.Frequency1").Value = 10
If Err.Number < 0 Then
MsgBox "Timer not changed!"
Err.Clear
End If
On Error GoTo 0

'ThisWorkbook.Close SaveChanges:=False

End Sub

Save it into your XLStart folder (so it loads, runs, and closes each time you
start excel).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Another option would be to dump autosave and use Jan Karel Pieterse's addin
(works in any version) called AutoSafe (note spelling).

It doesn't overwrite the existing workbook when it saves. It saves to a user
selectable folder. And when it's done, it either deletes these backups (or puts
them in the recycle bin). And the user can always restore the backups from the
recycle bin.

http://www.jkp-ads.com/Download.htm
(look for AutoSafe.zip, not autosafeVBE.zip, for your purposes.)

JT Spitz wrote:

I keep trying to change the time between auto-saves to 30 minutes, but every
time I reopen excel 2000 it is back to 10 minutes. How do I get this change
to be permanent?

Thanks.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Auto save in excel 2000 keeps reverting to 10 minutes

Thanks for the information. Over the next few days I will try your macro
solution before I download anything new. I appreciate your quick response.

BTW, I may not be able to get back to this discussion thread as the search
for anything with my name (easier than any other type of search since I don't
log that many questions) only brings up items from 2008 and prior. I would
have to go through the list day by day/case by case to find this thread
again. I was lucky to find this as cases are, as you know, continually being
logged. The notify of any replies function also did not work here, there was
nothing in my email about your response. This situation happened a few
months ago and someone suggested I try logging cases a different way (can't
remember their suggestion), but I still see people are using this forum so
I'm a little confused. Anyway that is a separate issue that is low on the
priority list.

Getting this auto-save thing to work is higher on the list.

Thanks again.

JT



"Dave Peterson" wrote:

Create a workbook with this code in a general module:

Option Explicit
Sub auto_open()

On Error Resume Next
Workbooks("autosave.xla").Excel4IntlMacroSheets("L oc Table") _
.Range("ud01n.Frequency1").Value = 10
If Err.Number < 0 Then
MsgBox "Timer not changed!"
Err.Clear
End If
On Error GoTo 0

'ThisWorkbook.Close SaveChanges:=False

End Sub

Save it into your XLStart folder (so it loads, runs, and closes each time you
start excel).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Another option would be to dump autosave and use Jan Karel Pieterse's addin
(works in any version) called AutoSafe (note spelling).

It doesn't overwrite the existing workbook when it saves. It saves to a user
selectable folder. And when it's done, it either deletes these backups (or puts
them in the recycle bin). And the user can always restore the backups from the
recycle bin.

http://www.jkp-ads.com/Download.htm
(look for AutoSafe.zip, not autosafeVBE.zip, for your purposes.)

JT Spitz wrote:

I keep trying to change the time between auto-saves to 30 minutes, but every
time I reopen excel 2000 it is back to 10 minutes. How do I get this change
to be permanent?

Thanks.


--

Dave Peterson
.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Auto save in excel 2000 keeps reverting to 10 minutes

I use google to search groups.

http://groups.google.com/advanced_se...blic.excel. *

Give it enough information (you as the author, maybe a keyword or date) and
you'll find it.

JT Spitz wrote:

Thanks for the information. Over the next few days I will try your macro
solution before I download anything new. I appreciate your quick response.

BTW, I may not be able to get back to this discussion thread as the search
for anything with my name (easier than any other type of search since I don't
log that many questions) only brings up items from 2008 and prior. I would
have to go through the list day by day/case by case to find this thread
again. I was lucky to find this as cases are, as you know, continually being
logged. The notify of any replies function also did not work here, there was
nothing in my email about your response. This situation happened a few
months ago and someone suggested I try logging cases a different way (can't
remember their suggestion), but I still see people are using this forum so
I'm a little confused. Anyway that is a separate issue that is low on the
priority list.

Getting this auto-save thing to work is higher on the list.

Thanks again.

JT

"Dave Peterson" wrote:

Create a workbook with this code in a general module:

Option Explicit
Sub auto_open()

On Error Resume Next
Workbooks("autosave.xla").Excel4IntlMacroSheets("L oc Table") _
.Range("ud01n.Frequency1").Value = 10
If Err.Number < 0 Then
MsgBox "Timer not changed!"
Err.Clear
End If
On Error GoTo 0

'ThisWorkbook.Close SaveChanges:=False

End Sub

Save it into your XLStart folder (so it loads, runs, and closes each time you
start excel).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Another option would be to dump autosave and use Jan Karel Pieterse's addin
(works in any version) called AutoSafe (note spelling).

It doesn't overwrite the existing workbook when it saves. It saves to a user
selectable folder. And when it's done, it either deletes these backups (or puts
them in the recycle bin). And the user can always restore the backups from the
recycle bin.

http://www.jkp-ads.com/Download.htm
(look for AutoSafe.zip, not autosafeVBE.zip, for your purposes.)

JT Spitz wrote:

I keep trying to change the time between auto-saves to 30 minutes, but every
time I reopen excel 2000 it is back to 10 minutes. How do I get this change
to be permanent?

Thanks.


--

Dave Peterson
.


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Auto save in excel 2000 keeps reverting to 10 minutes

See this KB article about autosave in Excel 2000 not retaining settings.

http://support.microsoft.com/kb/231117

Might be you're not fully patched.


Gord Dibben MS Excel MVP

On Mon, 8 Feb 2010 13:53:01 -0800, JT Spitz
wrote:

Thanks for the information. Over the next few days I will try your macro
solution before I download anything new. I appreciate your quick response.

BTW, I may not be able to get back to this discussion thread as the search
for anything with my name (easier than any other type of search since I don't
log that many questions) only brings up items from 2008 and prior. I would
have to go through the list day by day/case by case to find this thread
again. I was lucky to find this as cases are, as you know, continually being
logged. The notify of any replies function also did not work here, there was
nothing in my email about your response. This situation happened a few
months ago and someone suggested I try logging cases a different way (can't
remember their suggestion), but I still see people are using this forum so
I'm a little confused. Anyway that is a separate issue that is low on the
priority list.

Getting this auto-save thing to work is higher on the list.

Thanks again.

JT



"Dave Peterson" wrote:

Create a workbook with this code in a general module:

Option Explicit
Sub auto_open()

On Error Resume Next
Workbooks("autosave.xla").Excel4IntlMacroSheets("L oc Table") _
.Range("ud01n.Frequency1").Value = 10
If Err.Number < 0 Then
MsgBox "Timer not changed!"
Err.Clear
End If
On Error GoTo 0

'ThisWorkbook.Close SaveChanges:=False

End Sub

Save it into your XLStart folder (so it loads, runs, and closes each time you
start excel).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Another option would be to dump autosave and use Jan Karel Pieterse's addin
(works in any version) called AutoSafe (note spelling).

It doesn't overwrite the existing workbook when it saves. It saves to a user
selectable folder. And when it's done, it either deletes these backups (or puts
them in the recycle bin). And the user can always restore the backups from the
recycle bin.

http://www.jkp-ads.com/Download.htm
(look for AutoSafe.zip, not autosafeVBE.zip, for your purposes.)

JT Spitz wrote:

I keep trying to change the time between auto-saves to 30 minutes, but every
time I reopen excel 2000 it is back to 10 minutes. How do I get this change
to be permanent?

Thanks.


--

Dave Peterson
.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
auto-save 2000 Ludvig Excel Discussion (Misc queries) 4 June 27th 08 09:10 AM
Any auto-save feature for Excel 2000? Eric Excel Discussion (Misc queries) 2 April 19th 08 08:31 PM
REVERTING A EXCEL FILE TO ITS PREVIOUS SAVE Trav Excel Discussion (Misc queries) 4 January 3rd 07 11:47 PM
auto save excel file every 10 minutes to its original file name MEG Excel Discussion (Misc queries) 3 September 8th 05 07:12 PM
Excel 2000 Auto Save YLWALSH Excel Worksheet Functions 2 March 5th 05 07:19 PM


All times are GMT +1. The time now is 02:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"