Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Auto/Manual Calculation

I have made some changes to a program recently. Nothing that I haven't done
in the last 7 years. I am using formulas that are linked to another
worksheet in the same workbook, or a worksheet in a separate workbook. As I
said, I have done this many times in the past. However, recently, and
seemingly indescriminantly,the calculations mode for some of my worksheets
will toggle to manual mode. I NEVER use Manual calculations and NEVER go
into the options tab where the Manual/Auto options are. The only thing I
have done a little different in the past is to group my worksheets together
to print all at once. But i do not change my calcualtion mode to Manual.
Thanks in advance for the help. I am going nuts trying to fuigure it out.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Auto/Manual Calculation

Common problem......not yet fixed in 2007 version.

ToolsOptionsCalculation can be Auto or Manual.

Excel takes the Calculation mode each session from the settings on the first
workbook opened in that session.

i.e. If you saved Book1 with calc mode in manual and opened it first, calc
mode would be in Manual.

If you saved Book2 with calc mode in auto and opened it after Book1, Book2
would be in manual mode(Excel ignores the auto calc mode in this case).

If you close Book1 before opening Book2, Book2 will be in auto calc mode.

Confusing enough? <g

If you want a particular workbook to always open in AutoCalc mode you can use
code to set it to auto whenever you open the workbook.

Private Sub Workbook_Open()
Application.Calculation = xlAutomatic
End Sub

Right-click on the Excel Icon left of "File" and select "View Code"

Paste the above into that module and save the workbook.


Gord Dibben MS Excel MVP

On Mon, 17 Dec 2007 10:22:02 -0800, Muffin Man <Muffin
wrote:

I have made some changes to a program recently. Nothing that I haven't done
in the last 7 years. I am using formulas that are linked to another
worksheet in the same workbook, or a worksheet in a separate workbook. As I
said, I have done this many times in the past. However, recently, and
seemingly indescriminantly,the calculations mode for some of my worksheets
will toggle to manual mode. I NEVER use Manual calculations and NEVER go
into the options tab where the Manual/Auto options are. The only thing I
have done a little different in the past is to group my worksheets together
to print all at once. But i do not change my calcualtion mode to Manual.
Thanks in advance for the help. I am going nuts trying to fuigure it out.


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
Manual Calculation TeresaD Setting up and Configuration of Excel 7 January 28th 08 08:54 PM
manual/auto calculation toggle button scott[_12_] Excel Programming 1 December 4th 07 04:56 PM
Auto/Manual Calculation using *.slk files Jim[_4_] New Users to Excel 0 November 7th 07 09:23 PM
default manual calculation instead of auto in options excel 2003 Lost in Excel Excel Discussion (Misc queries) 1 October 9th 05 06:55 PM
Excel Opens with Manual Calculation option on instead of Auto rich32822 Excel Programming 1 February 18th 05 09:01 AM


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