Forum Discussion
DBF031070a
Dec 21, 2022Copper Contributor
Excel recalculation
I have a Excel sheet where some cells recalculate automatically and others do not and require a F9 to recalculate. It is interesting that several totals recalculate automatically even where data ce...
NikolinoDE
Dec 21, 2022Gold Contributor
Automatically calculate formulas...to do this,
start Microsoft Excel and click on "File > Options" in the menu bar.
In the Options dialog box, switch to the Formulas category.
In the "Workbook Calculation" area, enable the "Automatic" option.
So the automatic calculation should work again and the cells with formulas should show the correct result again when the contents/values of the reference cells change.
You could turn automatic formula calculation on and/or off automatically with VBA Code.
Private Sub Workbook_aktivate()
Application.Calculation= xlautomatic
End Sub
Private Sub Workbook_deaktivate()
Application.calculation= xlManual
End Sub
Additional Information:
How Excel determines the current mode of calculation
Hope I was able to help you with this info.
I know I don't know anything (Socrates)
- DBF031070aDec 27, 2022Copper ContributorMany thanks for your response.
I have reviewed the three files that have the recalculation problem and all already have the workbook calculation set on via the formula tab calculation option.
Using your suggestion I have reset auto calculation on and off several times and auto calculation seems to now be working OK.
I will be able to confirm this when I have new data to input on 28/12
Many thanks for your help on this.
Have a good new year.
D- DBF031070aDec 29, 2022Copper ContributorI have today entered new data on all three spreadsheets and the recalculate problems remain. As a matter of interest I have deleted all formulas from the cells affected and then added the formulas again and unfortunately the problems remain.
Do you have any other ideas to resolve the problem?
Kind regards DBF- NikolinoDEDec 29, 2022Gold ContributorIt would be beneficial to include one of these workbooks (please, without sensitive data) in order to be able to make more accurate statements.
Is it only with these workbooks the problem?
...or only with certain formulas?
Additional information about the current Excel version, operating system and storage medium would be an advantage.