Calculating Average

  • Thread starter Thread starter Graham
  • Start date Start date
G

Graham

I am trying to calculate teh average of a column without counting blanks. How
can I do this? My current formula is =AVERAGE(X8:X26) but is counting blanks
in it. In that column, I have formulas to enter in the number needed...is
this a problem? Thanks for your help. Graham
 
By "blanks", do you mean zeroes? Average will ignore blank cells.

Your formula which returns values to X8:X26 could be amended along
these lines:

=IF(your_formula=0,"",your_formula)

to return formula blanks rather than zeroes.

Or you could use an array* formula:

=AVERAGE(IF(X8:X26<>0,X8:X26,""))

*Commit with Ctrl-Shift-Enter, not just Enter.

Hope this helps.

Pete
 

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

Excel Average dates help 0
Average of Subtotals in Pivot Table 0
Excel Sumproduct 0
#DIVI/0 issue 1
Subtotal across a row 1
Calculate Average in pivot item 6
Sumproduct in matrix means 3
Average without Hidden Cells 4

Back
Top