sumproduct help

G

Guest

I need to sum a column if numbers that contains many #n/a returns. I was
thinking of the sumproduct formula but I can't figure out how to get it to
ignore the n/a's.

something like SUMPRODUCT(--(ISNUMBER(F3:F610)),F3:F610)

How do I do this?


Thanks
 
G

Guest

Try

=SUMIF(F3:F610,"<>#N/A")

or to ignore any error values

=SUM(SUMIF(F3:F610,{"<0",">0"}))
 

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

Top