How do I exclude zero's from an average of five non-adjacent cells

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to average the values in several non-adjacent cells in a row, and
a number of them contain zero values. How do I exclude the zero values from
the average? They are non-adjacent, or not in a specific range (e.g., they
may be in cells A2, C2, F2, J2, L2).
 
How about:
=SUM(A2:L2)/(COUNTIF(A2:L2,"<>" & 0)-COUNTBLANK(A2:L2))
 
this may work, you didn't specilfy if there were or weren't any other
numbers in the row that you didn't want in the average.

=SUMIF(A2:N2,">0")/MAX(1,COUNTIF(A2:N2,">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

Back
Top