divide by 0 error jmp

J

JohnnyJomp

Hi!
I have a spreadsheet where if certain cells are empty, I get a divide by 0
errors. I understand I can nopt divide by 0; that is not the issue. My issue
is I can not seem to add a column of numbers if one or more have divide by 0
errors.
Can someone suggest how I can either get rid of the divide/0 error, or be
able to add a selection of cells where 1 or more have /0 errors?
 
M

Mike H

Hi the choice is your:-

To sume a range with div/0 in use
=SUMIF(A1:A10,"<>#DIV/0!")

To eliminate div/o use
=IF(ISERROR(9/C6),"",9/C6)
In this case 9/c6 generates a Div/0 error

Mike
 
J

JohnnyJomp

Hi Mike!
thanks for the tips!
John

Mike H said:
Hi the choice is your:-

To sume a range with div/0 in use
=SUMIF(A1:A10,"<>#DIV/0!")

To eliminate div/o use
=IF(ISERROR(9/C6),"",9/C6)
In this case 9/c6 generates a Div/0 error

Mike
 

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

divide so no error Excel 2007 1
#Div/0 10
division formula 2
I need help with Numbers on Mac 0
Dividing by Zero in Access Reports 14
divide by zero error 5
want to return "n/a" or "0" 2
#DIV/0! Error 1

Top