Retrieve data and create a list based on multiple criterias

Jarke

Board Regular
Joined
Aug 13, 2016
Messages
95
Hi all,

I'm trying to create a formula in which I can pull names from my big data table. One formula and I can drag it down and it fills up with all approved names (based on the criterias).

I have names in column A, values in column B and other values in column C.

I want to retrieve all names which has a value bigger than zero in column B and who also have a value bigger than 10 in column C.

How should I go about it? No expert at Index or Match yet, and have given to much energy on trying to figuring it out by myself now :confused:


Thanks alot in advance!
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
A
B
C
D
E
1
namevaluevaluename
2
a
5​
15​
a
3
b
3​
22​
b
4
c
0​
11​
5
d
4​
9​

<tbody>
</tbody>


e2=IFERROR(INDEX($A$2:$A$5,SMALL(IF($B$2:$B$5>0,IF($C$2:$C$5>10,ROW($A$2:$A$5)-ROW($A$2)+1)),ROWS($A$2:A2))),"")

control+shift+enter copy down
 
Upvote 0

Forum statistics

Threads
1,215,398
Messages
6,124,699
Members
449,180
Latest member
craigus51286

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