Max Value From Multiple Index Match

L

Legacy 396030

Guest
I have this formula array that I want to get the max value from column D when all 3 matches are made:

Code:
{=IFERROR(INDEX(D$2:D$12,MATCH(1,($G2=$A$2:$A$12)*($H2=$B$2:$B$12)*($I2=$C$2:$C$12),0)),"")}

Does anyone know how to alter this to get the max value?

Thank you very much in advance for your help

BRS
 
Last edited by a moderator:

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hello,

You could test the following array formula ...

=MAX(IF($A$2:$A$12=$G2,IF($B$2:$B$12=$H2,IF($C$2:$C$12=$I2,$D$2:$D$12))))

HTH
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,339
Messages
6,124,381
Members
449,155
Latest member
ravioli44

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top