Max

C

ceemo

I would like to take the max value of one column where anouther column
meets a criteria
 
D

duane

here is an example

entered as an array formala (control+shift+enter)

=MAX(IF(E5:E7=1,D5:D7))

max of d5:d7 subject to e5:e7 being 1
 
D

Domenic

Try...

=MAX(IF(RangeX=Cond,RangeY))

....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

Hope this helps!
 
Top