Max formula for specified criteria

  • Thread starter Thread starter fearthespear
  • Start date Start date
F

fearthespear

I need a formula for the highest sales price of a specified criteria. Sales
price for condos only.
Style=column G (condo,victorian,ranch)
sales price=column F
=max(?)
Can you help?
 
Try this array formula** :

=MAX(IF(G1:G10="condo",F1:F10))

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