Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi,
Is there a way to have excel create a backup file saved somewhere each time the workbook is either opened or closed? I know there is the auto recover but it doesn't really save a back up file that I could open when ever I need to. Thanks, |
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
This is one I use.
Sub Backup() 'kept in personal.xls & assigned to toolbar button On Error GoTo BackupFile MkDir CurDir & "\Backup" BackupFile: With ActiveWorkbook MyWB = .Path & "\BACKUP\" & .Name .SaveCopyAs MyWB .Save End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Aris" wrote in message ... Hi, Is there a way to have excel create a backup file saved somewhere each time the workbook is either opened or closed? I know there is the auto recover but it doesn't really save a back up file that I could open when ever I need to. Thanks, |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Thanks! This was great. it worked perfectly.
"Don Guillett" wrote: This is one I use. Sub Backup() 'kept in personal.xls & assigned to toolbar button On Error GoTo BackupFile MkDir CurDir & "\Backup" BackupFile: With ActiveWorkbook MyWB = .Path & "\BACKUP\" & .Name .SaveCopyAs MyWB .Save End With End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Aris" wrote in message ... Hi, Is there a way to have excel create a backup file saved somewhere each time the workbook is either opened or closed? I know there is the auto recover but it doesn't really save a back up file that I could open when ever I need to. Thanks, . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to link a NEW workbook back to a summary workbook? | Excel Discussion (Misc queries) | |||
back to previus workbook | Excel Discussion (Misc queries) | |||
how to back-up Excel workbook | Excel Discussion (Misc queries) | |||
I LOST an Excel Workbook; How do I get it back? | Excel Discussion (Misc queries) | |||
I just saved over a workbook file I NEED. Can I get it back? | Excel Discussion (Misc queries) |