how can i get MANUAL CALCULATIONS p e r m a n e n t l y

G

Guest

how can i set up my excel 2003 so that all my calculations are done manually?
when i set it up, it reverts back to automatic when i reboot
 
G

Gord Dibben

Tools>Options>Calculation 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>

It may be safest to place some Workbook_Open code in your Personal.xls which
sets the calc mode.

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

Or in a particular workbook you want in manual mode.


Gord Dibben MS Excel MVP

how can i set up my excel 2003 so that all my calculations are done manually?
when i set it up, it reverts back to automatic when i reboot

Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Scrabble Value calculation for Welsh words 0
Manual Calculation 7
problem in file 3
Fill array with Values 4
Sending mail message with unicode text 1
Combine words from columns 17
What are these ? 8
file decrypt ? 1

Top