Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How to do an autosave workbook at a fix time(eg. 10pm) to a file wit
filename of current time and date? Or export the chart to a fil readable by excel -- Message posted from http://www.ExcelForum.com |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
copy and paste to a normal module sheet
Run SetAutoSave Sub SetAutoSave() Application.OnTime TimeValue("20:00:00"), "AutoSave" End Sub Sub AutoSave() Dim fName As String fName = ActiveWorkbook.Path & _ "\Test " & Format(Now(), "ddmmyy hhmm") & ".xls" ActiveWorkbook.SaveAs FileName:=fName, FileFormat:= _ xlNormal, Password:="", WriteResPassword:="", _ ReadOnlyRecommended:=False _ , CreateBackup:=False End Su -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
AutoSave | Excel Discussion (Misc queries) | |||
AutoSave.xla Add-in | Setting up and Configuration of Excel | |||
Autosave workbook as unique file | Excel Discussion (Misc queries) | |||
Opened Autosave but when closing workbook Autosave closes itself | Excel Worksheet Functions | |||
autosave | Setting up and Configuration of Excel |