如何判断一个EXCEL公式计算出现错误在VBA中,用IF,在线等
如何判断一个EXCEL公式计算出现错误在VBA中,用IF
[解决办法]
根据包含公式的单元格地址来判断
参考考一下
Sub 宏1()
MsgBox ActiveSheet.Cells.SpecialCells(xlCellTypeFormulas, 16).Address
End Sub
[解决办法]
=IF(ISERROR(yourFormat),true,false)
[解决办法]
If Application.WorksheetFunction.IsError(ActiveCell.Value) Then MsgBox "Error "