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

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
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,216,073
Messages
6,128,641
Members
449,461
Latest member
kokoanutt

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