0 dvided by 0

J

James Silverton

Hello, aquamanaj!
You wrote on Fri, 6 Oct 2006 14:36:02 -0700:

a> i get an error when i put 0 divided by 0 in microsoft excel

Of course you do! Divide by zero is undefined no matter what it
is working on.

James Silverton
Potomac, Maryland

E-mail, with obvious alterations:
not.jim.silverton.at.comcast.not
 
P

PCLIVE

That's correct. You can't divide by zero. If it is a formula, then you can
add an IF statement to the beginning.

ex.
=IF(B1=0, "",A1/B1)
 
Top