I use the Autosave.xla add-in. When I open Excel, Autosave is set to save
every 10 minutes and it requires a prompt. I can change that to 5 minutes and
select no prompt. However, is there a way to have it open already defaulting
to 5 minutes and no prompt? If the power goes out and my computer reboots,
Excel does not save, since the first time Autosave kicks in, it stops at the
prompt, which is the default setting. I tried to look at the VBA script
(aboput which I nkow nothing, by the way) but it wanted a password before I
could edit the .xla file.
If Excel is opened, the settings changed and Excel is then closed properly
the new setting should be there next time it is opened.
If it constantly returns to 10 mins, I would suggest a flawed installation
of Excel or the add-in. Have you tried removing the add-in and then putting
it back?
The outside option is that your IT boys have tinkered with a bit more than
the default settings for macro security.
Giz
quot;jglinderholmquot; wrote:
gt; I use the Autosave.xla add-in. When I open Excel, Autosave is set to save
gt; every 10 minutes and it requires a prompt. I can change that to 5 minutes and
gt; select no prompt. However, is there a way to have it open already defaulting
gt; to 5 minutes and no prompt? If the power goes out and my computer reboots,
gt; Excel does not save, since the first time Autosave kicks in, it stops at the
gt; prompt, which is the default setting. I tried to look at the VBA script
gt; (aboput which I nkow nothing, by the way) but it wanted a password before I
gt; could edit the .xla file.
Create a workbook with this code in a general module:
Option Explicit
Sub auto_open()
On Error Resume Next
Workbooks(quot;autosave.xlaquot;).Excel4IntlMacroSheets(quot;L oc Tablequot;) _
.Range(quot;ud01b.Promptquot;).Value = False
If Err.Number lt;gt; 0 Then
MsgBox quot;Prompt not changed!quot;
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:
www.mvps.org/dmcritchie/excel/getstarted.htm
jglinderholm wrote:
gt;
gt; I use the Autosave.xla add-in. When I open Excel, Autosave is set to save
gt; every 10 minutes and it requires a prompt. I can change that to 5 minutes and
gt; select no prompt. However, is there a way to have it open already defaulting
gt; to 5 minutes and no prompt? If the power goes out and my computer reboots,
gt; Excel does not save, since the first time Autosave kicks in, it stops at the
gt; prompt, which is the default setting. I tried to look at the VBA script
gt; (aboput which I nkow nothing, by the way) but it wanted a password before I
gt; could edit the .xla file.
--
Dave Peterson
- Nov 03 Mon 2008 20:47
Autosave.xla add-in: how to edit default settings
close
全站熱搜
留言列表
發表留言