Extracting a unique list of values based on set criteria

LearnExcl

Board Regular
Joined
Mar 17, 2010
Messages
245
Office Version
  1. 2016
Platform
  1. Windows
Hello All,

Column A houses alphanumeric values. Column C houses 0s or 1s. Column E houses text. What I would like in Column H is a list of unique values extracted from Column A where values in Column C is 1. In Column I, I need to extract a unique list of values from A where cells in Column C are 1s AND cells in Column E are nonblank.

Your assistance will be greatly appreciated.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
This way requires that row 1 has headers or is left blank. So in H2:

=IFERROR(INDEX($A$2:$A$10,MATCH(0,IF($C$2:$C$10=1,COUNTIF($H$1:H1,$A$2:$A$10)),0)),"")

and I2:

=IFERROR(INDEX($A$2:$A$10,MATCH(0,IF($C$2:$C$10=1,IF($E$2:$E$10<>"",COUNTIF($I$1:I1,$A$2:$A$10))),0)),"")

Both are array formulas and require entering with CTRL-SHIFT-ENTER. You will need to adjust the ranges no doubt.
 
Upvote 0
Thank you very much, Steve. I just had to add the "match type" (0) to the formula and it started working just fine. One thing I would like to ask though, could you please explain the Match() portion of the formula? I really want to get educated on that piece as I am having difficulty understanding it. Specifically, the countif portion in which the criteria is a whole range ($A$2:$A$10) being compared against $I$1:I1. Any and all help will be appreciated.
 
Upvote 0
That produces an array of COUNTIF results. The MATCH looks for the first zero in the array that satifies the condition/s. We want the zero because that means it doesnt appear in our list already so it produces a unique list. The evaluate formula tool works very well to explain what is going on.
 
Upvote 0

Forum statistics

Threads
1,223,157
Messages
6,170,420
Members
452,325
Latest member
BlahQz

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