Avg where ?

T

Tammy

Hello can anybody tell me what what with my statement?

I want my spread sheet to figure an average of the values in column F Where
the value in column A = DFW.


=AVERAGE(A2:A65000,MATCH("dfw",F2:F65000,0),0)
 
D

Don Guillett

This is an array formula that must be entered using ctrl+shift+enter.
Suggest fewer rows
=AVERAGE(IF(F2:F65000="dfw",A2:A65000))
 
Top