Extract unique values based on multiple criteria

asun6068

New Member
Joined
Mar 20, 2014
Messages
2
hello community, I'm looking to extract values from a spreadsheet based on multiple data. I used the following tutorial, which led me to create an array that worked perfectly for creating outputs based on 1 condition, but my attempts to expand it for 2 criterion haven't worked:

https://www.extendoffice.com/documents/excel/3381-excel-extract-unique-values-with-criteria.html

this is the original formula from the tutorial:

=INDEX($B$2:$B$17, MATCH(0, IF($D$2=$A$2:$A$17, COUNTIF($E$1:$E1, $B$2:$B$17), ""), 0))

I'd like to add something that says: and also make sure the extract is above an X threshold.

Thank you!
 
Last edited:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
obviously untested, but something like...
=INDEX($B$2:$B$17, MATCH(0, IF(($D$2=$A$2:$A$17)*($b$2:$b$17>="xxx"), COUNTIF($E$1:$E1, $B$2:$B$17), ""), 0))
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,293
Members
448,564
Latest member
ED38

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