Do formulas no longer recalculate when a dependency of a formula changes?
var workbook = new Workbook();
workbook.Settings.CalcMode = CalcModeType.Automatic;
workbook.Settings.CreateCalcChain = true;
workbook.Worksheets[0].Cells["B1"].Formula = "=5+A1";
workbook.Worksheets[0].Cells["A1"].Value = 5;
var value = workbook.Worksheets[0].Cells["B1"].Value;
notice the value of B1 doesn’t change until I call worrkbook.CalculateFormula(false); first.
I thought this used to work automatically. Does this mean every time I write a value, I have to recalculate the entire workbook? That doesn’t seem very efficient.