Index/Match/Max Formula

AlexaS

Board Regular
Joined
Oct 12, 2012
Messages
158
Ok, so I'm good on how Index/Match works. I've used it successfully in the past, understand the examples that I can find online, I'm good. Where I'm having a problem is trying to incorporate a Max function. Here's my simplified data:

CustClassSales
1Low100
2Middle200
2Low75
3High50
4None125

<tbody>
</tbody>


Basically I need to search column A to match a customer number, and then search for the maximum sales volume and then return the appropriate class. So in the example I would search for Cust# 2, have it find that the max value is 200 and return the corresponding class which is Middle. I need some help because I can't get the Max portion to work.

This is the closest I've gotten
Code:
=INDEX(B21:F1959,MATCH(J22,B21:B1959,0),3)
and this just returns a #REF!
Code:
=INDEX(B20:F1958,MATCH(J21,B20:B1958,0),MATCH(MAX(F20:F1958),F20:F1958,0))

Any help is appreciated since I'm currently doing this manually and I'm getting sick of it.
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try:


Book1
ABC
1CustClassSales
21Low100
32Middle200
42Low75
51High50
64None125
7
8
9Cust
101
11
12Class
13Low
Sheet5
Cell Formulas
RangeFormula
A13{=INDEX(B2:B6,MATCH(MAX(IF(A2:A6=A10,C2:C6)),C2:C6,0))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Caribeiro77,
You need to make a small change to your formula in case there are duplicate vales in the Sales column for different Cust. numbers.
This is an array formula and must be entered with CTRL-SHIFT-ENTER.

Code:
=INDEX($B$2:$B$6,MATCH(MAX(IF($A$2:$A$6=$A$10,$C$2:$C$6)),[COLOR=#ff0000]IF($A$2:$A$6=$A$10[/COLOR],$C$2:$C$6),0))
 
Upvote 0
These worked perfectly thank you! I do have a question though (as I tend to avoid array formulas), can I put an if statement in front of it and still work or do I need to handle that in a separate cell?

Never mind! I played with it a little bit and got it to work with the IF statement and a concatenate. This rocks! Thank you so much!
 
Last edited:
Upvote 0
When your just looking up a single value in a col of values (col A), and wanting the maximum value for that value from another col in your table (col D).

=LOOKUP(1,0/FREQUENCY(0,1/(1+($A$1:$A$10=A15)*$D$1:$D$10)),$D$1:$D$10)

Thanks XOR LX!
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,305
Members
449,079
Latest member
juggernaut24

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