Application.CalculateFullRebuild Method

Excel Developer Reference

For all open workbooks, forces a full calculation of the data and rebuilds the dependencies.

Syntax

expression.CalculateFullRebuild

expression   A variable that represents an Application object.

Remarks

Dependencies are the formulas that depend on other cells. For example, the formula "=A1" depends on cell A1. The CalculateFullRebuild method is similar to re-entering all formulas.

Example

This example compares the version of Microsoft Excel with the version of Excel in which the workbook was last calculated. If the two version numbers are different, a full calculation of the data in all open workbooks is performed and the dependencies are rebuilt.

Visual Basic for Applications
  Sub UseCalculateFullRebuild()
If Application.CalculationVersion <> _
    Workbooks(1).CalculationVersion Then
    Application.<strong>CalculateFullRebuild</strong>
End If

End Sub

See Also