Link to home
Start Free TrialLog in
Avatar of kingjely
kingjelyFlag for Australia

asked on

Division by 0 error check

Hi guys whats the syntax trap Div/0 errors

=SUM(($B$34)/($B$33)) <===== else 0


Thanks
SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of kingjely

ASKER

=IFERROR(SUM(($B$34)/($B$33)),"0")
=IFERROR(SUM(($B$34)/($B$33)),"END OF MONTH")
=IFERROR(SUM(($B$34)/($B$33)),0)


These all get the error #NAME?

Why?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi
I copied and pasted from my spreadsheet directly onto here

=IFERROR(SUM(($B$34)/($B$33)),0)
=IFERROR(SUM(($B$34)/($B$33)),"0")
=IFERROR(SUM(($B$34)/($B$33)),"END OF MONTH")

Both dont work
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial