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

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

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