Make zero formula

G

Guest

I am getting the below message with the formula showing.

#DIV/0!
=I11/E11*1000*5

Can you tell me how to put the -iserror formula to make this show zero if
the cells are zero..

Thanks
Frank
 
D

David Biddulph

=IF(ISERROR(I11/E11*1000*5),"",I11/E11*1000*5)
or
=IF(E11=0,"",I11/E11*1000*5)
will give a blank if E11 is zero.

If you actually want the formula to return zero (despite the fact that the
answer should be infinity), then replace "" by 0 in the formula.
 

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

dividing 0 by 0 in excel 2003 10
iserror problem 9
IF and THEN statements 5
Divide by zero error 3
showing zero in cell 5
divide by zero 1
Greater Than Symbols and calculations 0
#DIV/O! help to show zero. 2

Top