A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Workbook back up



 
 
Thread Tools Display Modes
  #1  
Old March 3rd, 2010, 01:17 PM posted to microsoft.public.excel.newusers
ARIS
external usenet poster
 
Posts: 7
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  
Old March 3rd, 2010, 01:56 PM posted to microsoft.public.excel.newusers
Don Guillett[_2_]
external usenet poster
 
Posts: 607
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
news
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  
Old March 3rd, 2010, 05:54 PM posted to microsoft.public.excel.newusers
ARIS
external usenet poster
 
Posts: 7
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
news
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,


.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 09:53 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.