Excel) (Error 物件
代表某個範圍的試算表錯誤。
這個物件適用于只包含一個儲存格的範圍。
使用Errors物件的Item屬性可傳回Error物件。
傳回Error物件之後,您可以使用Value屬性搭配Range物件的Errors屬性來檢查是否已啟用特定的錯誤檢查選項。
注意
請小心不要混淆 Error 物件與 Visual Basic 的錯誤處理功能。
下列範例會在參考空白儲存格的儲存格 A1 中建立公式,然後使用 Item (索 引) ,其中 index 會識別錯誤類型,以顯示指出情況的訊息。
Sub CheckEmptyCells()
Dim rngFormula As Range
Set rngFormula = Application.Range("A1")
' Place a formula referencing empty cells.
Range("A1").Formula = "=A2+A3"
Application.ErrorCheckingOptions.EmptyCellReferences = True
' Perform check to see if EmptyCellReferences check is on.
If rngFormula.Errors.Item(xlEmptyCellReferences).Value = True Then
MsgBox "The empty cell references error checking feature is enabled."
Else
MsgBox "The empty cell references error checking feature is not on."
End If
End Sub
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。