Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Rik Ihssen
 
Posts: n/a
Default Multiple Saves simultaneously

Whenever I create an Excel workbook I would like to save it in two, or more,
locations. Is there a way to do this quickly without having to do Save As and
then clicking around my computer to reach the right location for each Save?
--
Rik Ihssen
Principal
Washington Twp. Elem.
Valparaiso, IN
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Multiple Saves simultaneously

You could use a macro:

option explicit
sub save3times()
with activeworkbook
.save
.savecopyas "C:\mybackups\" & .name
.savecopyas "c:\mybackups2\" & .name
end with
end sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Rik Ihssen wrote:

Whenever I create an Excel workbook I would like to save it in two, or more,
locations. Is there a way to do this quickly without having to do Save As and
then clicking around my computer to reach the right location for each Save?
--
Rik Ihssen
Principal
Washington Twp. Elem.
Valparaiso, IN


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Multiple Saves simultaneously

THis is good, but it does not let me choose where to save the initial file.
Is there any way to make the save as option come up for new documents?

"Dave Peterson" wrote:

You could use a macro:

option explicit
sub save3times()
with activeworkbook
.save
.savecopyas "C:\mybackups\" & .name
.savecopyas "c:\mybackups2\" & .name
end with
end sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Rik Ihssen wrote:

Whenever I create an Excel workbook I would like to save it in two, or more,
locations. Is there a way to do this quickly without having to do Save As and
then clicking around my computer to reach the right location for each Save?
--
Rik Ihssen
Principal
Washington Twp. Elem.
Valparaiso, IN


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Multiple Saves simultaneously

Maybe you could replace the .save with:
Application.Dialogs(xlDialogSaveAs).Show



Sorting data wrote:

THis is good, but it does not let me choose where to save the initial file.
Is there any way to make the save as option come up for new documents?

"Dave Peterson" wrote:

You could use a macro:

option explicit
sub save3times()
with activeworkbook
.save
.savecopyas "C:\mybackups\" & .name
.savecopyas "c:\mybackups2\" & .name
end with
end sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Rik Ihssen wrote:

Whenever I create an Excel workbook I would like to save it in two, or more,
locations. Is there a way to do this quickly without having to do Save As and
then clicking around my computer to reach the right location for each Save?
--
Rik Ihssen
Principal
Washington Twp. Elem.
Valparaiso, IN


--

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
Sorting multiple worksheets simultaneously Bannor Excel Discussion (Misc queries) 0 January 10th 06 12:33 PM
How do I set print areas for multiple sheets simultaneously? Twirly Excel Discussion (Misc queries) 3 January 9th 06 12:16 PM
External Links and Multiple Instances JMD Excel Discussion (Misc queries) 3 January 3rd 06 09:21 PM
selecting multiple sheet tabs and open another workbook Bannor Excel Discussion (Misc queries) 5 November 25th 05 02:38 AM
Simultaneously change values in multiple cells? Jaclyn Excel Worksheet Functions 4 July 20th 05 05:24 PM


All times are GMT +1. The time now is 03:04 AM.

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"