Excel formulas don't update unless I click on the formula and press enter

拈花ヽ惹草 提交于 2019-12-11 06:00:03

问题


I have an excel workbook with formulas that works fine except for two table columns which don't recalculate on opening. The excel sheet is 2003 xls (compatibility mode in 2010).

I've my workbook is set to calculate automatically and the cells containing the formulas are formatted as general. I've tried clicking a blank cell and using paste special add or multiply and I've tried pasting just the formatting of other cells that work but none of this has fixed my problem.

Similarly clicking Calculate Now or Calculate Sheet doesn't work. What does work is clicking in the cell formula and pressing enter. Also saving as xlsm and then reopening works (but this is not a solution unfortunately).

I have macros but none of them affect the worksheet these formulas are in or the calculation style.

Anything else I can try?

Affected formulas are as follows:

=IF($I2<>"D/E",$J2+($K1-$L1),$J2)

=(ROUND(FixedQuotaGuide!$K2,0))

回答1:


In case this helps anyone else I finally got this to work by including the tab reference in each part of the formula like so:

Original formula:

=IF($I2<>"D/E",$J2+($K1-$L1),$J2)

Working formula:

=IF(FixedQuotaGuide!$I2<>"D/E",FixedQuotaGuide!$J2+($K1-$L1),FixedQuotaGuide!$J2)


来源:https://stackoverflow.com/questions/19679424/excel-formulas-dont-update-unless-i-click-on-the-formula-and-press-enter

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!