Code not working - autosave copy

zeroflight

New Member
Joined
Jan 23, 2018
Messages
2
So I've been trying to put together some code that AutoSaves any and all open documents into a single folder every 5 minutes (code is set to 10 seconds for testing purposes). Saves as original filename + date and as extension xlsx. I can get it to run manually but not automatically. Below is the code I have in a module in my Personal.xlsb. Ideas on what I'm doing wrong? I'm not particularly good at code so you may have to speak slowly. What I do have is somewhat cobbled together from a lot of other similar examples out there, but I didn't find any that fit exactly.

Ideas?

Code:
<code class=" language-vbnet">Private Sub Workbook_Open()
    dTime = Now + TimeValue("00:00:10")
    Application.OnTime dTime, "AutoSaveMacro"
End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)
   Application.OnTime dTime, "AutoSaveMacro", , False
End Sub
 
Public dTime As Date
Sub AutoSaveMacro()
    dTime = Now + TimeValue("00:00:10")
    ThisWorkbook.SaveCopyAs Filename:= _
        "C:\AutoSave\" & _
        Left(ThisWorkbook.Name, InStrRev(ThisWorkbook.Name, ".", , vbTextCompare) - 1) & _
        "_" & Format(Date, "yyyy-mm-dd") & ".xlsx"
End Sub</code>
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Hi zeroflight and Welcome to the Board! HTh. Dave
workbook code....
Code:
Private Sub Workbook_Open()
Application.OnTime Now + TimeValue("00:00:10"), "AutoSaveMacro"
End Sub
module code...
Code:
Public Sub AutoSaveMacro()
Dim NowStr As String
'*new file every time interval
'NowStr = Format(Now, "yyyy/mm/dd.Hh.Nn.ss ")

'*new file every day
NowStr = Format(Date, "yyyy-mm-dd")
ThisWorkbook.SaveCopyAs Filename:=ThisWorkbook.FullName & _
        "_" & NowStr & ".xlsm"
Application.OnTime Now + TimeValue("00:00:10"), "AutoSaveMacro"
End Sub
 
Upvote 0
Thanks! With a little modification I have it changed to the below to fit my needs and better output what & where I want. But that still leaves me with the problem of it not running automatically on all excel files getting opened; it only runs on the Personal.xlsb file. Don't know if I'm going to have to code this as an plugin instead but that would actually be handy for distributing to others in the office.

Code:
Public Sub AutoSaveMacro()
Dim NowStr As String

'NowStr = Format(Now, "yyyy/mm/dd.hh.nn.ss ")
'*Date string added to file
NowStr = Format(Now(), "yy-MM-dd.hh.nn")

'Save copy of file to C:\Autosave as file type xlsx
'Save original filename + date string + .xlsx
ThisWorkbook.SaveCopyAs Filename:="C:\AutoSave\" & _
        Left(ThisWorkbook.Name, InStrRev(ThisWorkbook.Name, ".", , vbTextCompare) - 1) & _
        "_" & NowStr & ".xlsx"

'Time interval to run
Application.OnTime Now + TimeValue("00:00:10"), "AutoSaveMacro"

End Sub
 
Upvote 0
Not clear on your needs. U want any/all open XL files to be saved without having the code in them? That sounds like an addin maybe, Dave
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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