Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 331
Default keep manual recalculation mode on

hi,

when I send a file saved with Automatic calc on, the users claim it causes
Excel to recalculate when they open it. This way it causes a dispruption in
the large models they have open at the time in the manual mode.

I always thought that if Excel is in manual, any new file will open in
manual. Can you please shed some light?

Thanks

--
______
Regards,
Greg
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 320
Default keep manual recalculation mode on

Excel's calculation is set by the first file it opens (which MAY be
personal.xls). Opening another file will not change it. That file could have
a workbook_open event which turns calc to manual, but only after it's been
calculated (!) if it's currently automatic.

"Greg" wrote in message
...
hi,

when I send a file saved with Automatic calc on, the users claim it causes
Excel to recalculate when they open it. This way it causes a dispruption
in
the large models they have open at the time in the manual mode.

I always thought that if Excel is in manual, any new file will open in
manual. Can you please shed some light?

Thanks

--
______
Regards,
Greg


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
CM CM is offline
external usenet poster
 
Posts: 136
Default keep manual recalculation mode on

I would use VBA --
go to Toos/macro/Visual Basic

in the left column of objects, double-click on 'This Workbook'
in the blank space copy the following:

Private Sub Workbook_Open()
With Application
.Calculation = xlManual
.MaxChange = 0.001
End With
end

if you want to set it back to automactic when the workbook is closed, also
copy into 'This Workbook':

Private Sub Workbook_BeforeClose(Cancel As Boolean)

With Application
.Calculation = xlAutomatic
.MaxChange = 0.001
End With
end
--
hope to help,
cm


"Greg" wrote:

hi,

when I send a file saved with Automatic calc on, the users claim it causes
Excel to recalculate when they open it. This way it causes a dispruption in
the large models they have open at the time in the manual mode.

I always thought that if Excel is in manual, any new file will open in
manual. Can you please shed some light?

Thanks

--
______
Regards,
Greg

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
Spreadsheet constantly reverts to manual calculation mode JR Hester Excel Discussion (Misc queries) 3 September 10th 07 03:58 PM
manual calculation mode Victor Excel Discussion (Misc queries) 0 June 18th 07 10:44 PM
Avoiding Recalculation for a function in automatic mode Lokesh Sharma Excel Worksheet Functions 1 September 19th 06 04:52 AM
Open CSV causes calculation in manual calc mode [email protected] Excel Discussion (Misc queries) 0 July 25th 06 09:22 PM
My Calculation Mode Changed to Manual Somehow?!? Jeb Excel Discussion (Misc queries) 2 August 4th 05 03:40 PM


All times are GMT +1. The time now is 12:44 PM.

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"