Average If Adejecent Cells Greater Than Zero

G

Guest

I have a have multiple worksheets that contain data i would like to calculate
some averages for. Down one column is BF, LN, DN, SCK, TOT repeated, and the
adjecent cell contains a value I currently have the average for Breakfast as
=(SUMIF(August!$J$2:$J$91,"BF",August!$K$2:$K$91))/COUNTIF(August!$J$2:$J$91,"BF"),
howver the count function still counts cells that have zero values, I would
like the average of only the non-zero cells. Any ideas????
 
P

Peo Sjoblom

=AVERAGE(IF((August!$J$2:$J$91="BF")*(August!$K$2:$K$91<>0),August!$K$2:$K$9
1))

entered with ctrl + shift & enter

--

Regards,

Peo Sjoblom
 
G

Guest

That still doesnt work, i played around with it and im still not getting the
average of only the non-zero matching values. It either counts the zero
cells as a one to to change the average or it doesnt add them to the sum but
it divides by too large of a number.
 

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