Thread: AVERAGE
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default AVERAGE

Hi,

In 2007

=AVERAGEIF(A1:A8,"<0",A1:A8)

In 2003

=AVERAGE(IF(A1:A8<0,A1:A8,""))

This formula must be array entered - press Shift+Ctrl+Enter, instead of enter
or
=SUM(A1:A8)/COUNTIF(A1:A8,"<0")

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Keith - NRCS" wrote:

I'm looking to create a formula that will do the following:

I have a column that I would like to get the average of but my problem is
that there are some cells with a 0(zero) in them. So the average must get
knocked down by taking the zero's into account.

My question is how do you create a formula to ignore the zero's but still
average the remaining numbers?

Thanks!