Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IWorkbook.CalculateFull() Method

In This Article

Forces a full calculation of the data in a workbook.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v24.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

#Declaration

void CalculateFull()

#Remarks

The CalculateFull method forces recalculation of all spreadsheet cells regardless of whether the cell is marked for calculation. The method works with any CalculationOptions.Mode setting.

Use the CalculateFull method if worksheet formulas use User-Defined Functions (UDF) and the function code has been modified. Since the worksheet is not aware of such changes, the cells containing that function are not marked for calculation and the IWorkbook.Calculate method will not process them. In this situation, the CalculateFull method will recalculate all cells.

See Also