You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After evaluating a cell, the variable cell.need_update is set to False (line 98 of evaluator.py) but it is never used. Therefore, when another cell needs the value of the previous cell, it gets re-evaluated again. For simple sheets this is no problem but when the cells depend on other cells which again depend on other cells etc, this quickly slows down the evaluation. To avoid this, line 98 should rather be cell.formula.evaluate = False.
The text was updated successfully, but these errors were encountered:
After evaluating a cell, the variable
cell.need_update
is set toFalse
(line 98 ofevaluator.py
) but it is never used. Therefore, when another cell needs the value of the previous cell, it gets re-evaluated again. For simple sheets this is no problem but when the cells depend on other cells which again depend on other cells etc, this quickly slows down the evaluation. To avoid this, line 98 should rather becell.formula.evaluate = False
.The text was updated successfully, but these errors were encountered: