Is there an AVERAGEIF function similar to COUNTIF - how do I do i.

J

John Emhof

I need to determine the average value from a range of values for those values
in that range that are larger than a certain value. This would act similiar
to the COUNTIF function, but it doesn't seem to exist.
 
D

Don Guillett

this is an array formula so must be entered with ctrl+shift+enter

=AVERAGE(IF(C3:C23>3,C3:C23))
 
Top