Summing

C

Catherine

I need to sum a column where some of the cells have a value of #N/A. Is that
possible? If so, how?
 
R

Ragdyer

It's really better practice to eliminate the errors from the calculating
column at the outset.
However, this should do what you ask:

=SUMIF(A1:A100,"<>#N/A")
 
Top