Home > OS >  IfError with else, does this function exist in Excel?
IfError with else, does this function exist in Excel?

Time:01-20

While trying to help the author of enter image description here

CodePudding user response:

Next to IFERROR(), there also is the ISERROR() function, which can be used as an input for an IF()-clause:

=IF(ISERROR(value),value_if_error,value_if_no_error)

  •  Tags:  
  • Related