Application.CheckAbort Method

Excel Developer Reference

Stops recalculation in a Microsoft Excel application.

Syntax

expression.CheckAbort(KeepAbort)

expression   A variable that represents an Application object.

Parameters

Name Required/Optional Data Type Description
KeepAbort Optional Boolean Allows recalculation to be performed for a Range.

Example

In this example, Excel stops recalculation in the application, except for cell A10. For you to be able to see the results of this example, other calculations should exist in the application that will allow you to see the differences between the cell designated to continue recalculating and other cells.

Visual Basic for Applications
  Sub UseCheckAbort()
Dim rngSubtotal As Variant
Set rngSubtotal = Application.Range("A10")

' Stop recalculation except for designated cell.
Application.<strong>CheckAbort</strong> KeepAbort:=rngSubtotal

End Sub

See Also