The ISERROR Function works exactly the same in Google Sheets as in Excel:ISERROR Examples in VBAYou can also use ISERROR in VBA:MsgBox IsError(1/2)Result: FalseMsgBox IsError(CvErr(0))Result: TrueThis example shows using ISERROR to test the result of a function....