Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 955 Bytes

Excel.Application.CalculateFull.md

File metadata and controls

40 lines (25 loc) · 955 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.CalculateFull method (Excel)
vbaxl10.chm133255
vbaxl10.chm133255
Excel.Application.CalculateFull
11be6386-a5de-817f-0624-b7e7fd502ed3
04/04/2019
medium

Application.CalculateFull method (Excel)

Forces a full calculation of the data in all open workbooks.

Syntax

expression.CalculateFull

expression A variable that represents an Application object.

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, a full calculation of the data in all open workbooks is performed.

If Application.CalculationVersion <> _ 
 Workbooks(1).CalculationVersion Then 
 Application.CalculateFull 
End If

[!includeSupport and feedback]