Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
ac
 
Posts: n/a
Default Saving excel backup copy - path?

When checking the setting in the Save As Options "always create backup", By
default excel saves the backup copy to the same path as the original file.
Can this backup file be saved to another path? if so, where can I make this
change?

File - Save AS - Tools - General Options - Always create backup.

thanks,


  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

ac

Not as far as I know.

Backups are saved in the Excel default file location.

You could create a macro that will save the file at the default location and a
copy to the folder of your choice.

The macro could be run manually or in beforesave code in ThisWorkbook.


Sub BUandSave2()
'Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
'Saves the current file to a backup folder and the default folder
'Note that any backup is overwritten
Application.DisplayAlerts = False
ActiveWorkbook.SaveCopyAs FileName:="E:\GordStuff\Backup\" & _
ActiveWorkbook.Name
ActiveWorkbook.Save
Application.DisplayAlerts = True
End Sub


Gord Dibben Excel MVP

On Fri, 4 Feb 2005 09:51:02 -0800, "ac" wrote:

When checking the setting in the Save As Options "always create backup", By
default excel saves the backup copy to the same path as the original file.
Can this backup file be saved to another path? if so, where can I make this
change?

File - Save AS - Tools - General Options - Always create backup.

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
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
Automatic backup copy craigq Charts and Charting in Excel 2 April 11th 05 04:57 PM
Backup in Saving a file in Excel 2002 4rs Excel Discussion (Misc queries) 1 January 14th 05 05:09 AM
How do i save backup copy in a different folder mekraj Excel Discussion (Misc queries) 3 December 17th 04 08:33 PM
Opening and saving Excel 2003 file from Excel 97. Rodrigo Excel Discussion (Misc queries) 2 December 12th 04 02:17 PM


All times are GMT +1. The time now is 03:19 PM.

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

About Us

"It's about Microsoft Excel"