Find 5th highest value in column based on criteria

trock12

New Member
Joined
Dec 17, 2014
Messages
29
Let's say I have 3 columns - of which A and B contain multiple records of the name.

Column A = Color
Column B = Manufacturer
Column C = A number

What I'm looking for is if Column A = "Green" AND Column B = "Microsoft", return the 5th highest value in Column C. (which obviously matches my criteria).

If tried MaxIFs, (Large,5), IF(AND(....and I'm missing something!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Maybe something like this

=LARGE(IF(A1:A100="Green",IF(B1:B100="Microsoft",C1:C100)),5)
Ctrl+Shift+Enter

M.
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,252
Members
452,623
Latest member
Techenthusiast

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