Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 5
Default Workbook back up

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   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1,522
Default Workbook back up

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   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 5
Default Workbook back up

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to link a NEW workbook back to a summary workbook? bsharp Excel Discussion (Misc queries) 0 March 19th 08 05:23 PM
back to previus workbook Miri Excel Discussion (Misc queries) 0 January 23rd 07 07:26 AM
how to back-up Excel workbook liniejo Excel Discussion (Misc queries) 0 January 12th 06 09:47 PM
I LOST an Excel Workbook; How do I get it back? chuckbp Excel Discussion (Misc queries) 2 October 13th 05 02:36 PM
I just saved over a workbook file I NEED. Can I get it back? not to smart Excel Discussion (Misc queries) 2 September 13th 05 12:57 AM


All times are GMT +1. The time now is 10:49 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"