Excel Formulas Not Calculating

Excel Formulas Not Calculating

What happens when good Excel formulas go bad? A workbook of mine that worked fine for several years, when using Excel 2003, suddenly refused to update all the formulas, after a switch to Excel 2010. Even more mysterious, the calculations worked fine on some machines, but not others. Why are Excel formulas not calculating on some computers?

Hint: It wasn’t one of the obvious solutions.

Check for Automatic Calculation

When someone complains about Excel formulas not calculating , it’s usually because the Calculation setting has been changed to Manual, instead of Automatic.

That can happen if the first workbook that you open in an Excel session was saved as Manual calculation. That setting affects all the other workbooks the you open during that session.

In this case, the workbook calculation was set to Automatic on all the machines – that’s the first thing we checked.

To check the setting, click the Formulas tab on the Excel Ribbon, and click the Calculate Options drop down.

formulacalculate00

Or, go to the Excel Options window, and click Formulas.

formulacalculate01

Force the Calculation

Even if the Calculation option is set for Manual, you can use a Ribbon command or keyboard shortcut to force a calculation.

Click the Formulas tab on the Excel Ribbon, and click Calculate Now or Calculate Sheet.

n the tooltip that is shown in the screen shot below, you can see that the shortcut for Calculate Sheet is Shift + F9.

formulacalculate03

We tried using the Calculation shortcuts, including Ctrl + Alt + Shift + F9 (that one recalculates everything, and starts your car).

formulacalculate04

However, none of the shortcuts had any effect on the non-calculating cells in this workbook. I also tried a macro that did a full calculation, and that didn’t work either. Sigh.

Kick Start the Formulas with VBA

Next I wrote a macro that replaced all the “=” signs at the start of all formulas in the workbook. This has a similar effect to manually selecting a cell, clicking in formula bar and pressing the Enter key, to recalculate the cell.

formulacalculate05

Sometimes that brings a tired formula back to life, but not in this case. These formulas weren’t sleeping, they were deceased!

Change the Named Range in the Formula

I spent a considerable amount of time in Google, looking for other suggestions, but didn’t find anything new. So, I kept tweaking and testing, going through the file one worksheet at a time.

Finally, I found the formulas that seemed to be causing the problem. They were SUMIF formulas that referred to a named range on another worksheet.

=IF(B7=””,0,SUMIF(DataEntryStep2a,E7,$D$7:$D$22))

There was no obvious reason why that wouldn’t work in Excel 2010, but I was getting desperate. So, I changed the named range to a worksheet reference, using cells on the same worksheet.

=IF(B7=””,0,SUMIF($E$7:$E$22,E7,$D$7:$D$22))

Miraculously, that solved the problem! I held my breath, while we tested on a few more machines, and everything calculated as it was supposed to.

Why that worked, I have no idea, but if you run into a similar problem, maybe it will help you too. Of course, this solution could stop working again, at the next lunar eclipse!

[Update] There is problem with SUMIF, SUMIFS, AVERAGEIF and  AVERAGEIFS, in Excel 2010, when the references are on a different sheet. Thanks to Stuart Valentine, who posted a link to a discussion of this SUMIFS problem. My named range was on a different sheet, so the location was the problem.

Watch the Video

In most cases though, the problem is the Automatic Calculation setting.

To see the effects of opening Excel workbooks with different calculation option settings, watch this short Excel tutorial video.

_______________

68 thoughts on “Excel Formulas Not Calculating”

  1. Hey, thanks a lot, that ws quick and easy fix, on which I had been stressing and scratching my head over. Thanks again.

  2. Hello,
    So I am having an issue with one of my formula’s I am using the basic “=Sum” calculation. It work for most cells but for a few it is a number off. So it will give me a result for five for something the should be 6. I have two cells each has 3 in it and the result shows 5. I have checked and I have the automatic calculation on. Anyone who could shed some light on this? I would greatly appreciate it.
    Thanks…Kristen

  3. Hi There Guys
    I recently bought a notebook with windows 8 on. I purchased Office 2010
    What I find and cannot solve is that if I open an old document and change values, excel calculates incorrectly. Even if I re-type all the values in the cell and do the summation over it still calculates incorrectly. If I do aa new calc in the same area(just below) it also calculates incorrectly. If I do another calc in the same page but in a different area the calc is fine. New documents is no problem.
    Please help… as it were I am also technologically challenged
    produk bottel trigger label box labour Total cost
    100ml 10.3 .95 .97 1,00 .1 2,00 3,00
    100ml 10.30 0,95 0,97 2,00 0,10 2,00 6,02

  4. My formulas were giving me issues only with subtraction. To fix it, I entered the formula with “spaces”. For example:
    Instead of =B10-D10 I wrote: = B10 – D10
    This helped me after all else failed.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.