Calculate Method
Calculate()
Calculates formulas of the range as needed.
Declaration
Examples
worksheet.Range["A1"].Value = 10;
IRange formulaCell = worksheet.Range["B1"];
formulaCell.Formula = "=A1*2";
formulaCell.Calculate();
object value = formulaCell.Value;