Zero divided by Zero

  • Thread starter Thread starter TheNYCer
  • Start date Start date
T

TheNYCer

Is there a formula that will allow zero divied by zero to equal zero
rather than giving an error?
 
Maybe use an IF statement to check if the divisor is 0

A1=0 or any number
B1=0

In C1, enter

=IF(B1=0, 0, A1/B1)
 
you could also nest two IF's...

=IF(B1=0, 0, IF(A1=0,0,A1/B1))

that way if either cell is equal to zero it will not return the divide by
zero error but instead return 0.
 
Hi Stephen,

I believe the problem happens only when you divide a number by 0. 0 divided
by a non 0 value will equal to 0, so you need not check if A1 is 0.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top