Return Max Value of range that is determined by an Index & Match lookup

后端 未结 2 758
半阙折子戏
半阙折子戏 2020-12-17 00:36

I need a cell to display the max value of a range who\'s row is defined by an index and match formula. I know this will be an array function but I\'m struggling to get the s

相关标签:
2条回答
  • 2020-12-17 00:46

    You can easily change the match-type to 1 when you are looking for the greatest value or to -1 when looking for the smallest value.

    0 讨论(0)
  • 2020-12-17 00:50

    You don't need an index match formula. You can use this array formula. You have to press CTL + SHIFT + ENTER after you enter the formula.

    =MAX(IF((A1:A6=A10)*(B1:B6=B10),C1:F6))
    

    SNAPSHOT

    enter image description here

    0 讨论(0)
提交回复
热议问题