why doesnt my formula cell update automatically ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

=SUM(G5:G11) if I change any cell in the range, the sum is not performed. I
have to select the sum cell, F2 then Enter in order to get the sum to work
 
Check and make sure that calculation is set to automatic.

Tools>Options>Calculation

Biff
 
Thanks Biff...not sure how it got set to manual!

Biff said:
Check and make sure that calculation is set to automatic.

Tools>Options>Calculation

Biff
 
Hi Wozza

FYI the calculation mode is set by the Calculation setting of the first
Workbook opened in that session of Excel.
Maybe the first book you opened was from someone else, and they had the
calculation set to manual.

Regards

Roger Govier
 
I would love to know why Excel does this as I have had the same problem today
and its a workbook that we have used everyday this month and it is used by
the same person everytime, then for some reason, this morning it has somehow
set itself to Manual Calculation. Anyone got any ideas?
 
Ruth, the easiest workaround is to just have the workbook set calculation to
automatic every time it is opened. Copy the 3 lines of code below, open the
workbook, right-click on the Excel icon at the left of the menubar and
select View Code. Paste the code in there. Press Alt-F11 to return to the
spreadsheet. Close the file and save it. Now when it's opened, calculation
will be automatic. HTH, James

Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
 
Zone said:
Ruth, the easiest workaround is to just have the workbook set calculation to
automatic every time it is opened. Copy the 3 lines of code below, open the
workbook, right-click on the Excel icon at the left of the menubar and
select View Code. Paste the code in there. Press Alt-F11 to return to the
spreadsheet. Close the file and save it. Now when it's opened, calculation
will be automatic. HTH, James

Private Sub Workbook_Open()
Application.Calculation = xlCalculationAutomatic
End Sub
 
: Is this in Office 2007? I can't get any Code view
open. Am I clicking the wrong thing?
 

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

Back
Top