Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rio rio is offline
external usenet poster
 
Posts: 7
Default keeps turning off

MY auto calculation keeps turning off. How do i fix and or repair that?
Thanks
rio
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default keeps turning off

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 Thu, 30 Aug 2007 17:18:01 -0700, rio wrote:

MY auto calculation keeps turning off. How do i fix and or repair that?
Thanks
rio


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rio rio is offline
external usenet poster
 
Posts: 7
Default keeps turning off

so I cant write code but I can always open the same book everyday and that
should do it
Thanks rio


"Gord Dibben" wrote:

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 Thu, 30 Aug 2007 17:18:01 -0700, rio wrote:

MY auto calculation keeps turning off. How do i fix and or repair that?
Thanks
rio



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default keeps turning off

If that workbook has calc mode set to auto then opening that workbook first will
do the job.

You could, to make sure calc mode for the session is auto, store your workbook
in your XLSTART folder so's it starts with Excel or start Excel with a shortcut
to that workbook.

But what do you mean "so I can't write code"?

The code has been written for you and instructions given about where to place
it.


Gord

On Thu, 30 Aug 2007 17:34:03 -0700, rio wrote:

so I cant write code but I can always open the same book everyday and that
should do it
Thanks rio


"Gord Dibben" wrote:

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 Thu, 30 Aug 2007 17:18:01 -0700, rio wrote:

MY auto calculation keeps turning off. How do i fix and or repair that?
Thanks
rio




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
rio rio is offline
external usenet poster
 
Posts: 7
Default keeps turning off

why yes you did. I get all nervous when i see the word write code. Thanks
and I will do it tomorrow.

rio


"Gord Dibben" wrote:

If that workbook has calc mode set to auto then opening that workbook first will
do the job.

You could, to make sure calc mode for the session is auto, store your workbook
in your XLSTART folder so's it starts with Excel or start Excel with a shortcut
to that workbook.

But what do you mean "so I can't write code"?

The code has been written for you and instructions given about where to place
it.


Gord

On Thu, 30 Aug 2007 17:34:03 -0700, rio wrote:

so I cant write code but I can always open the same book everyday and that
should do it
Thanks rio


"Gord Dibben" wrote:

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 Thu, 30 Aug 2007 17:18:01 -0700, rio wrote:

MY auto calculation keeps turning off. How do i fix and or repair that?
Thanks
rio




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
Turning off questions Peter Excel Discussion (Misc queries) 9 April 29th 07 02:20 AM
Turning green bollard Excel Worksheet Functions 15 April 23rd 07 09:32 AM
Turning 0.000 values red bz Excel Worksheet Functions 2 April 1st 06 12:49 PM
Turning #N/A to a zero...?? bigtim Excel Discussion (Misc queries) 5 July 26th 05 08:48 PM
Turning off Template Help Brentnik Excel Discussion (Misc queries) 0 April 12th 05 03:08 AM


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

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"