Forum Discussion
andrew thomson
Sep 25, 2018Copper Contributor
Creating a list where entries meet specific criteria
Hi I am hoping someone will be able to provide me with some guidance. I am trying to create a list which will show values which meet a specific criteria. The list will be on one worksheet wi...
SergeiBaklan
Oct 02, 2018Diamond Contributor
Hi Andrew,
For data like this
the formula could like
for Small in F2
=IFERROR(LOOKUP(2,1/(COUNTIF($F$1:$F1,$A$2:$A$20)=0)/($A$2:$A$20<>"")/($C$2:$C$20="Small"),$A$2:$A$20),"")
for Large in I2
=IFERROR(LOOKUP(2,1/(COUNTIF($I$1:$I1,$A$2:$A$20)=0)/($A$2:$A$20<>"")/($C$2:$C$20="Large"),$A$2:$A$20),"")
and drag them down. Adjust the ranges for the real data.
Attached.