CalculationVersion Property Example
This example compares the version of Microsoft Excel with the version of Excel that the workbook was last calculated in. If the two version numbers are different, the example sets the blnFullCalc
variable to True.
If Application.CalculationVersion <> _
Workbooks(1).CalculationVersion Then
blnFullCalc = True
Else
blnFullCalc = False
End If