标签: excel excel-vba keyboard-shortcuts vba
我是excel vba的新手。是否有任何函数可以将单元格值检测为#REF!?
#REF!
答案 0 :(得分:5)
假设CellReference引用了一个单元格,
CellReference
要检测任何错误,请使用If IsError(CellReference) Then
If IsError(CellReference) Then
要检测#REF!,请特别使用If CellReference = CVErr(xlErrRef) Then
If CellReference = CVErr(xlErrRef) Then