다음을 통해 공유


ErrorCheckingOptions.NumberAsText Property (Excel)

When set to True (default), Microsoft Excel identifies, with an AutoCorrect Options button, selected cells that contain numbers written as text. False disables error checking for numbers written as text. Read/write Boolean.

Syntax

.NumberAsText

A variable that represents an ErrorCheckingOptions object.

Example

In the following example, the AutoCorrect Options button appears for cell A1, which contains a number stored as text.

Sub CheckNumberAsText() 
 
 ' Simulate an error by referencing a number stored as text. 
 Application.ErrorCheckingOptions.NumberAsText = True 
 Range("A1").Value = "'1" 
 
End Sub

참고 항목

개념

ErrorCheckingOptions Object Members

ErrorCheckingOptions Object