[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IRange.Calculate

Calculate Method

Calculate()

Calculates formulas of the range as needed.

Declaration
void Calculate()
Sub Calculate()
Examples
worksheet.Range["A1"].Value = 10;
IRange formulaCell = worksheet.Range["B1"];
formulaCell.Formula = "=A1*2";
formulaCell.Calculate();
object value = formulaCell.Value;