#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 51
Default Excel Fast Save

I am running Widow XP and Excel version 10.0.2614.0 and working with macro's.

Excel Help file refers to a "Allow fast Saves" check box on the Save tab of
the Tools menu, Options. There is no such a check box. Is there another way
to get fast saves or do I need a different version of Excel?

Also the macro cone Application.Calculation=x1Manual give a run time error.
Is this related to my version of Excel?



  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default Excel Fast Save

You don't say which version you're using, and frankly, I don't remember
fast saves in XL, but you wouldn't want to use them anyway.

The way they worked in Word was to save only what changed from a base
version. Back when drives were slow, that saved time. The problem is
that it used to lead to corruption, and extra garbage in the file. Since
it appended data, it also usually was SLOWER than just saving the file
normally.

XL has long saved differently - saving a temporary file, deleting the
original, then renaming the temp file. No savings to be made by just
saving changes.

Your syntax error is from using a "one" instead of an "ell" in

xlManual

though the canonical constant to use is

xlCalculationManual

though in all current versions, at least, they're the same value.


In article ,
jswalsh33 wrote:

Excel Help file refers to a "Allow fast Saves" check box on the Save tab of
the Tools menu, Options. There is no such a check box. Is there another way
to get fast saves or do I need a different version of Excel?

Also the macro cone Application.Calculation=x1Manual give a run time error.
Is this related to my version of Excel?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 51
Default Excel Fast Save

Thank you. That solved the problem of manual and automatic calculation.

On the fast save issue, I understand your answer. I have a large workbook
(30 MB) that takes 10's of seconds to complete a save. Since I would like to
save changes in my program on the fly, 10's of seconds is a long time when
executing a operator command. Is there any other way of shortening the save
time? For instance is there a macro code for saving the workbook
automatically on exit? In that way I would give up the saving on the fly.

"JE McGimpsey" wrote:

You don't say which version you're using, and frankly, I don't remember
fast saves in XL, but you wouldn't want to use them anyway.

The way they worked in Word was to save only what changed from a base
version. Back when drives were slow, that saved time. The problem is
that it used to lead to corruption, and extra garbage in the file. Since
it appended data, it also usually was SLOWER than just saving the file
normally.

XL has long saved differently - saving a temporary file, deleting the
original, then renaming the temp file. No savings to be made by just
saving changes.

Your syntax error is from using a "one" instead of an "ell" in

xlManual

though the canonical constant to use is

xlCalculationManual

though in all current versions, at least, they're the same value.


In article ,
jswalsh33 wrote:

Excel Help file refers to a "Allow fast Saves" check box on the Save tab of
the Tools menu, Options. There is no such a check box. Is there another way
to get fast saves or do I need a different version of Excel?

Also the macro cone Application.Calculation=x1Manual give a run time error.
Is this related to my version of Excel?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default Excel Fast Save

As was previous stated there is no Fast Save in Excel. You can speed things
up a little by:

1. Buying a faster hard drive 15,000 rpm.
2. Save to a flash drive
3. Save to a RAM disk
4. When you set Recalculation to Manual, uncheck the Recalculate before
save option.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"jswalsh33" wrote:

Thank you. That solved the problem of manual and automatic calculation.

On the fast save issue, I understand your answer. I have a large workbook
(30 MB) that takes 10's of seconds to complete a save. Since I would like to
save changes in my program on the fly, 10's of seconds is a long time when
executing a operator command. Is there any other way of shortening the save
time? For instance is there a macro code for saving the workbook
automatically on exit? In that way I would give up the saving on the fly.

"JE McGimpsey" wrote:

You don't say which version you're using, and frankly, I don't remember
fast saves in XL, but you wouldn't want to use them anyway.

The way they worked in Word was to save only what changed from a base
version. Back when drives were slow, that saved time. The problem is
that it used to lead to corruption, and extra garbage in the file. Since
it appended data, it also usually was SLOWER than just saving the file
normally.

XL has long saved differently - saving a temporary file, deleting the
original, then renaming the temp file. No savings to be made by just
saving changes.

Your syntax error is from using a "one" instead of an "ell" in

xlManual

though the canonical constant to use is

xlCalculationManual

though in all current versions, at least, they're the same value.


In article ,
jswalsh33 wrote:

Excel Help file refers to a "Allow fast Saves" check box on the Save tab of
the Tools menu, Options. There is no such a check box. Is there another way
to get fast saves or do I need a different version of Excel?

Also the macro cone Application.Calculation=x1Manual give a run time error.
Is this related to my version of Excel?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,624
Default Excel Fast Save

You could put this in your ThisWorkbook Code module:

Private Sub Workbook_BeforeClose(Cancel As Boolean)
Me.Save
End Sub


In article ,
jswalsh33 wrote:

For instance is there a macro code for saving the workbook
automatically on exit?

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 2007 Not opening Fast or at all Barbara Excel Discussion (Misc queries) 0 October 15th 08 12:06 PM
Need fast help in excel counting Lion2004 Excel Discussion (Misc queries) 4 September 20th 07 03:40 PM
How to get fast using ms-Excel and ms-Word? Raavs Excel Discussion (Misc queries) 1 May 24th 07 02:41 PM
excel to word - fast, easy? frendabrenda1 Excel Discussion (Misc queries) 4 December 8th 06 12:11 AM
OH, I need help fast.(Excel-Adobe) DKR Excel Discussion (Misc queries) 3 November 4th 05 08:53 PM


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