Forum Discussion
PatsOnFire
Nov 03, 2021Copper Contributor
Formula for: Filter an array based on a referenced value, then select largest value in other column
Hello, I am looking for some sort of "LARGEIF" formula. Here is my dataset. Column D represents expected results from the formula I need. In words, I would put the following formula in...
- Nov 03, 2021starting in Excel 2019 there is MAXIFS() function that can do that. What version of Excel do you have?
PatsOnFire
Nov 04, 2021Copper Contributor
Works! Thank you
SergeiBaklan
Nov 04, 2021Diamond Contributor
Just in case, couple of more options
=AGGREGATE(14,6, range/condition1/condition2,1)
and
=MAX( FILTER( range,condition1*condition2 ) )- PatsOnFireNov 04, 2021Copper ContributorAwesome thanks 🙂