title | keywords | f1_keywords | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|
Application.ErrorCheckingOptions property (Excel) |
vbaxl10.chm133280 |
|
|
3821c6fd-e6c2-70cc-f546-70fdac6a6161 |
04/04/2019 |
medium |
Returns an ErrorCheckingOptions object, which represents the error checking options for an application.
expression.ErrorCheckingOptions
expression A variable that represents an Application object.
In this example, the TextDate property is used in conjunction with the ErrorCheckingOptions property. When the user selects a cell containing a two-digit year in the date, the AutoCorrect Options button appears.
Sub CheckTextDate()
' Enable Microsoft Excel to identify dates written as text.
Application.ErrorCheckingOptions.TextDate = True
Range("A1").Formula = "'April 23, 00"
End Sub
[!includeSupport and feedback]