Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Spreadsheet constantly reverts to manual calculation mode | Excel Discussion (Misc queries) | |||
manual calculation mode | Excel Discussion (Misc queries) | |||
Avoiding Recalculation for a function in automatic mode | Excel Worksheet Functions | |||
Open CSV causes calculation in manual calc mode | Excel Discussion (Misc queries) | |||
My Calculation Mode Changed to Manual Somehow?!? | Excel Discussion (Misc queries) |