Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Tony
 
Posts: n/a
Default Excel Backup Location

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for my
backup file? Thank you very much.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel Backup Location

Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would save the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for my
backup file? Thank you very much.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Excel Backup Location

Dave, just for my curiosity.......could you take this one step further?

you could write your own macro that would save the
file in multiple locations.


All I need is a Yes or No answer (no code necessary!), could this be done
with VBA:

Do an on save event procedure that verifies the active file was saved as a
backup, copies it to a new location then deletes the backup in the default
directory?

I need to learn me some VBA!

Biff

"Dave Peterson" wrote in message
...
Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would save
the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for
my
backup file? Thank you very much.


--

Dave Peterson



  #4   Report Post  
Posted to microsoft.public.excel.misc
gjcase
 
Posts: n/a
Default Excel Backup Location


You can also specify the autorecover file location under
Tools/Options/Save

---GJC


--
gjcase
------------------------------------------------------------------------
gjcase's Profile: http://www.excelforum.com/member.php...o&userid=26061
View this thread: http://www.excelforum.com/showthread...hreadid=527932

  #5   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel Backup Location

Yes.

You could use an application event that looks for any workbook being saved (not
relying on autosave or autorecovery) and saves a copy of the file anywhere you
want.

You could also use an individual workbook's _beforesave event that does the same
thing.

Or you could just create macro that saves the file and also creates a backup
copy.

Then assign that macro to a shortcut key and use that whenever you wanted a
backup.

(I like the last technique best.)



Biff wrote:

Dave, just for my curiosity.......could you take this one step further?

you could write your own macro that would save the
file in multiple locations.


All I need is a Yes or No answer (no code necessary!), could this be done
with VBA:

Do an on save event procedure that verifies the active file was saved as a
backup, copies it to a new location then deletes the backup in the default
directory?

I need to learn me some VBA!

Biff

"Dave Peterson" wrote in message
...
Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would save
the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for
my
backup file? Thank you very much.


--

Dave Peterson


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel Backup Location

ps.

Jan Karel Pieterse wrote an addin (works in any version) called AutoSafe (note
spelling).

It doesn't overwrite the existing workbook when it saves. It saves to a user
selectable folder. And when it's done, it either deletes these backups (or puts
them in the recycle bin). And the user can always restore the backups from the
recycle bin.

http://www.jkp-ads.com/Download.htm
(look for AutoSafe.zip, not autosafeVBE.zip, for your purposes.)

Jan Karel's version will know if there was a crash and prompt you to open the
last version it saved.



Biff wrote:

Dave, just for my curiosity.......could you take this one step further?

you could write your own macro that would save the
file in multiple locations.


All I need is a Yes or No answer (no code necessary!), could this be done
with VBA:

Do an on save event procedure that verifies the active file was saved as a
backup, copies it to a new location then deletes the backup in the default
directory?

I need to learn me some VBA!

Biff

"Dave Peterson" wrote in message
...
Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would save
the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for
my
backup file? Thank you very much.


--

Dave Peterson


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Excel Backup Location

And one more hint.

Take a look at .save and .savecopyas in VBA's help.

Dave Peterson wrote:

Yes.

You could use an application event that looks for any workbook being saved (not
relying on autosave or autorecovery) and saves a copy of the file anywhere you
want.

You could also use an individual workbook's _beforesave event that does the same
thing.

Or you could just create macro that saves the file and also creates a backup
copy.

Then assign that macro to a shortcut key and use that whenever you wanted a
backup.

(I like the last technique best.)

Biff wrote:

Dave, just for my curiosity.......could you take this one step further?

you could write your own macro that would save the
file in multiple locations.


All I need is a Yes or No answer (no code necessary!), could this be done
with VBA:

Do an on save event procedure that verifies the active file was saved as a
backup, copies it to a new location then deletes the backup in the default
directory?

I need to learn me some VBA!

Biff

"Dave Peterson" wrote in message
...
Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would save
the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create a
backup. However, does anyone know how could I specify the location for
my
backup file? Thank you very much.

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Excel Backup Location

Thanks Dave. You da man!

Biff

"Dave Peterson" wrote in message
...
And one more hint.

Take a look at .save and .savecopyas in VBA's help.

Dave Peterson wrote:

Yes.

You could use an application event that looks for any workbook being
saved (not
relying on autosave or autorecovery) and saves a copy of the file
anywhere you
want.

You could also use an individual workbook's _beforesave event that does
the same
thing.

Or you could just create macro that saves the file and also creates a
backup
copy.

Then assign that macro to a shortcut key and use that whenever you wanted
a
backup.

(I like the last technique best.)

Biff wrote:

Dave, just for my curiosity.......could you take this one step further?

you could write your own macro that would save the
file in multiple locations.

All I need is a Yes or No answer (no code necessary!), could this be
done
with VBA:

Do an on save event procedure that verifies the active file was saved
as a
backup, copies it to a new location then deletes the backup in the
default
directory?

I need to learn me some VBA!

Biff

"Dave Peterson" wrote in message
...
Excel uses the same folder as the workbook.

You can't change this. But you could write your own macro that would
save
the
file in multiple locations.

Tony wrote:

Excel has a function, everytime when I save the file, it will create
a
backup. However, does anyone know how could I specify the location
for
my
backup file? Thank you very much.

--

Dave Peterson


--

Dave Peterson


--

Dave Peterson



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
Excel 2003: cannot locate default file location Spokaneman Excel Discussion (Misc queries) 2 March 10th 06 07:17 PM
Excel 2003: cannot find default file location Spokaneman Excel Discussion (Misc queries) 1 March 10th 06 06:58 PM
Excel automatically creates a backup speadsheet RLaurel Excel Discussion (Misc queries) 1 February 24th 06 07:40 PM
Excel networking help needed for backup Scilin Setting up and Configuration of Excel 0 February 20th 06 09:11 PM


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