Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
When set to True (default), Microsoft Excel identifies, with an AutoCorrect Options button, selected cells containing formulas that refer to empty cells. False disables empty cell reference checking. Read/write Boolean.
Syntax
expression.EmptyCellReferences
expression A variable that represents an ErrorCheckingOptions object.
Example
In the following example, the AutoCorrect Options button appears for cell A1, which contains a formula that references empty cells.
Sub CheckEmptyCells()
Application.ErrorCheckingOptions.EmptyCellReferences = True
Range("A1").Formula = "=A2+A3"
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.