Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
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.
Sub UseCheckAbort()
Dim rngSubtotal As Variant
Set rngSubtotal = Application.Range("A10")
' Stop recalculation except for designated cell.
Application.CheckAbort KeepAbort:=rngSubtotal
End Sub
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.