Averageif help

S

smeldawg

I have a fomula that is trying to average the totals of individual sections
of averages. I have one section where there is not an average to add to the
formula. I would like to write a formula that would average all of the totals
even if there is a null value so I don't have to rewrite the formula if when
the section gains a value. Currently the null value is represented by
#DIV/0!. Here is what I have so far;
=AVERAGE(I10,I16,I22,I28,I34,I40,I46,I52,I58)
This is what I have tried
-- =AVERAGEIF(I10,I16,I22,I28,I34,I40,I46,I52,I58,"<>#DIV/0!")


Please help
Drock-13
 
B

Biff

Try one of these array formulas** :

If you will *never* insert new rows above the range:

=AVERAGE(IF((MOD(ROW(I10:I58),6)=4)*(ISNUMBER(I10:I58)),I10:I58))

If you might insert new rows above the range:

=AVERAGE(IF((MOD(ROW(I10:I58)-ROW(I10),6)=0)*(ISNUMBER(I10:I58)),I10:I58))

** array formulas need to be entered using the key combination of
CTRL,SHIFT,ENTER (not just ENTER)
 
B

Biff

For some reason I can't get access using OE. Keep getting "Unable to connect
to the server" errors so I'm currently accessing through the web interface.
That's my sign-in for the web interface. I don't know how to change it! <g>
 
T

T. Valko

I think I found where to change the display name. Let's see if it shows up
differently this time.
 

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

How to use AVERAGEIFS for a date range 0
AVERAGEIF 4
AverageIF 6
Conditional AVERAGEIFS 6
Averageifs - criteria is cell is not blank 1
AVERAGEIF FORMULA EXCEL 2007 1
AverageIF 1
Averageif puzzle 5

Top