AutoSave in VBA

patrick_m84

New Member
Joined
Mar 30, 2004
Messages
8
Hi Guys

Wondering if you could help....

We have just had a power surge in the office and as such the majority of data in excel that people were using was lost.

The initial solution to stop this happening again was to use the AutoSave add in. However, because several copies have not been installed properly, this add-in is in an unavailable location on a server.

I reckon it must be fairly straightforward to write a quick VBA jobby that will save every 20 minutes.... semantically i guess it would be like this:

initial time = now()

when now() = initial time + 20
save active worksheet
initial time = now()
end

would that kinda thing work? and also how could i get it so that the macro would be available to all workbooks. i know it has something to do with the public excel folder or something, but i am a little unsure

anyhelp received would be very much appreciated.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi - Welcome to the board

Sub SaveIt()

Thisworkbook.Save

Application.OnTime Now + TimeSerial(0, 20, 0), "SaveIt"

End Sub


Then in the workbook open just run saveit and it will keep looping every 20 minutes.
 
Upvote 0
Thanks Jacob

Quick question though, how would I get this code running behind every workbook open?

I.E when the user opens excel, i want this code to run whatever file they open within it....
 
Upvote 0
That would take a class module to group all the open events. I'm don't use class modules that much so I am still learning them myself. Search the board for class module, there are a few topics which my help.

You could also make your own adding, but you would have to change the code from thisworkbook to do a loop for all the open workbooks.

Post back if you need help with any of these.
 
Upvote 0
Hi - Welcome to the board

Sub SaveIt()

Thisworkbook.Save

Application.OnTime Now + TimeSerial(0, 20, 0), "SaveIt"

End Sub


Then in the workbook open just run saveit and it will keep looping every 20 minutes.
Jacob,

I thank you for this tip, It's useful for me also:)

But I get a problem; After closing the workbook - it reopens automatically.
Do I need any termination code in Before_Close or something?

Jan Erik
Norway
 
Upvote 0
I'd be careful with this. There are MANY times I am messing around with a worksheet (running what-ifs, for example). I'd be plenty pissed if something save my workbook directly (that I didn't want save), and not to some dummy file.

:)

Keith W.
 
Upvote 0
I have a very similar routine to this, but i am also experiencing similar problems as desribed above. The document, due to the extensive amounts of VBA in the background does not autosave/autorecover correctly so i entered a new function to autosave the document.

Every 10 Minutes, the document will re-open agian (providing i havnt fully closed down excel) and save the document and leave it open.

Sub Workbook_Close()
Code:
Call VBAStopAutoSave
Sub VBAAutoSave
Code:
Public ThisTime as Double
Sub VBAStopAutoSave()
    On Error GoTo ErrH:
    Application.OnTime ThisTime, Procedure:="SaveDocument", Schedule:=False

Exit Sub
Sub SaveDocument()
Code:
Sub SaveDocument()
    On Error GoTo ErrH
    ThisWorkbook.Save
    Call ResetVBASaveTimer

Exit Sub
Sub ResetVBASaveTimer
Code:
Sub ResetVBASaveTimer()
On Error GoTo ErrH
    ThisTime = Now + TimeValue("00:10:00")
    Application.OnTime ThisTime, Procedure:="SaveDocument"

Exit Sub



Can Any please give some advice on how to ensure that when the document is closed that the timer that is created for that document is stopped and doesnt continue to open the documents affter they have been closed?

Regards,
Devon
 
Upvote 0
1. Save file without alert information when you close your excel file
2. coding in VBA excel:

Private Sub Workbook_BeforeClose(Cancel As Boolean)

ThisWorkbook.Save

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,223
Messages
6,123,714
Members
449,118
Latest member
MichealRed

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