How to suppress the “Division by zero” error and set the result to null for the whole application? By saying “for the whole application”, I mean it is not for a single expression. Instead, whenever a “Division by zero” error occurs, the result is set to null automatically and no error will be thrown.
Share
This should do the trick.
outputs
See the refs here error controls.
EDIT
In any place substitute
1/0by the function calldivision(1,0).EDIT – Without third variable