SUM ... Numbers, Nulls "", & Div/0

K

Ken

Excel2003 ...

Range (D3:D14) ... contains Numbers, Nulls "" & Div/0 ...

How do I write Formula to ... SUM the Numbers?

Thanks ... Kha
 
J

Jacob Skaria

If the numbers are all positive numbers try
=SUMIF(D3:D15,">0")

OR else try the below array formula ..You create array formulas in the same
way that you create other formulas, except you press CTRL+SHIFT+ENTER to
enter the formula. If successful in 'Formula Bar' you can notice the curly
braces at both ends like "{=<formula>}"

=SUM(IF(ISNUMBER(D3:D15),D3:D15))
 
D

Dave Peterson

=SUMIF(d3:d14,"<>"&"#Div/0!")
or
=SUMIF(d3:d14,"<>#Div/0!")

(I like the first since it's easier to see how the comparison string is built.
 
K

Ken

Jacob, Bob, Dave ... Thank you all for supporting these boards ... there are
many fine solutions found here ... Kha
 

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

Need "Div/0" Average Relief ... 4
AVERAGE around a #Div/0 error? 2
Blanks ("") by Formula 2
Sumproduct? 5
Inverse ... Formula or Function? 1
SUMIF? Or other? 2
Formula ... Minus Holidays? 1
SUM (TODAY thru EOM) 6

Top