I am trying to create a list on one worksheet based on data from another worksheet using two drop down boxes. I have a main spreadsheet that houses a list of operators, with their corresponding status (active, dropped, termed) and supervisor name. I would like to be able to select the supervisor name and status and the result be a list of operators that match that information. I currently have the formula =IF(ROWS($C$17:C17)<=$B$16,INDEX(Data!$A$2:$A$1048576,AGGREGATE(15,3,(Data!$H$2:$H$1048576=$A$1)/(Data!$H$2:$H$1048576=$A$1)*(ROW(Data!$H$2:$H$1048576)-ROW(Data!$H$1)),ROWS($C$17:C17))),"") which allows me to select a drop down to get a list based on the supervisor name, but I can't figure out how to add the status to the formula.
$B$16 is a reference to a helper cell to do a count: =COUNTIF(Data!$H$2:$H$1048576,$A$1)
Sheet1 = DATA
A B C D E F G H
1Name Carrier Position Status Model S.Date T.Date Supv
2 AA Active A Smith
3 BB Active J Doe
4 CC Term A Smith
5 DD Active J Doe
6 EE Term J Doe
7 FF Dropped A Smith
8 GG Active A Smith
Sheet2
A
1 Dropdown box to select Supv
2 Dropdown box to select Status
Example:
Supv: A Smith
Status: Active
Resulting list:
AA
GG
$B$16 is a reference to a helper cell to do a count: =COUNTIF(Data!$H$2:$H$1048576,$A$1)
Sheet1 = DATA
A B C D E F G H
1Name Carrier Position Status Model S.Date T.Date Supv
2 AA Active A Smith
3 BB Active J Doe
4 CC Term A Smith
5 DD Active J Doe
6 EE Term J Doe
7 FF Dropped A Smith
8 GG Active A Smith
Sheet2
A
1 Dropdown box to select Supv
2 Dropdown box to select Status
Example:
Supv: A Smith
Status: Active
Resulting list:
AA
GG