Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Jamo
 
Posts: n/a
Default can I choose office to create a backup file on another drive?

Can I have Excel create a backup of my document automaticaly to my chosen
location?

I know previous versions used to create a backup on the same directory as
the original document.
  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

Jamo

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 Thu, 27 Jan 2005 01:51:04 -0800, "Jamo"
wrote:

Can I have Excel create a backup of my document automaticaly to my chosen
location?

I know previous versions used to create a backup on the same directory as
the original document.


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
Weekly Transaction Processing Ralph Howarth Excel Worksheet Functions 4 January 19th 05 05:37 AM
Office 2003 - "autocomplete" in file | open or file | save no longer works Lanwench [MVP - Exchange] Excel Discussion (Misc queries) 4 January 12th 05 01:35 AM
Convert text file to MS_Excel Aqua Flow Excel Discussion (Misc queries) 1 November 30th 04 02:55 AM
Metering Office 97 products Info Excel Discussion (Misc queries) 0 November 29th 04 04:29 PM
How do I create a .csv file? Anna @ Drohan Co. Excel Worksheet Functions 1 November 16th 04 06:13 PM


All times are GMT +1. The time now is 03:40 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"