Thanks again. I don't understand the use of the asterisk (*) in the formula.
I made your suggested correction but the result of the formula is incorrect.
The formula you provided is averaging the entire column L rather than just
average those rows whose column A falls within the set criteria (established
on sheet Control: A2 and B2)
It works believe me, did you enter it with ctrl + shift & enter?
=AVERAGE(IF((RangeA>=x)*(RangeA<=y),RangeL))
will average values in RangeL where RangeA is greater than or equal to x AND
less than or equal to y
note that it if it is not entered with ctrl + shift & enter it will average
the whole RangeL (look in help for array formulas)

Signature
Regards,
Peo Sjoblom
> Thanks again. I don't understand the use of the asterisk (*) in the formula.
> I made your suggested correction but the result of the formula is incorrect.
[quoted text clipped - 34 lines]
> >>
> >> Does this make sense?
=MIN(IF((Revised!$A$2:$A$336>=G2)*(Revised!$A$2:$A$336<=I2),Revised!$A$2:$A$
> >> > 336))
=AVERAGE(IF((Revised!$A$2:$A$336>=G2)*(Revised!$A$2:$A$336<=I2),Revised!$A$2
> >> > :$A$336))
> >> >
[quoted text clipped - 6 lines]
> >> >>
> >> >> Here is my SUMIF formula:
=SUMIF(Revised!$A$2:$A$336,">="&G2,Revised!$L$2:$L$336)-SUMIF(Revised!$A$2:$
> >> > A$336,">"&I2,Revised!$L$2:$L$336)
> >> >>
[quoted text clipped - 4 lines]
> >> >>
> >> >> Not sure how to go about doing this...
David Lipetz - 16 Dec 2005 22:18 GMT
Peo - you are absolutely correct. I neglected to enter the formula as an
array. THANK YOU! Your assistance is most appreciated!
> It works believe me, did you enter it with ctrl + shift & enter?
>
[quoted text clipped - 79 lines]
>> >> >>
>> >> >> Not sure how to go about doing this...