Let’s consider any (potentially lengthy) function that can produce an error. For discussion’s sake, I’ll use =1/0
. I can ignore the resulting error by using the following formula:
=IF(ISERROR(1/0),"",(1/0))
As you can see, the function (e.g. 1/0
) is typed twice. Is there a neater way to do this?