Lookup/Filter?

russelljones

New Member
Joined
Jan 31, 2017
Messages
7
Morning all!!

I have searched and tried and error'd on the below- any help you can provide would be greatly appreciated!!
I have a table containing a list of employees and dates training they have completed a follows:

ABCDEFG
1 H&SICTSecurityData ComplianceOther trainingMore Training
2 John Smith01/05/201810/09/2019
3 Joe Bloggs05/05/201810/09/201825/01/201701/01/2019
4 Richard Smith02/12/201705/08/201725/09/2017
5 Amanda Jones04/08/2019Jan-19
6 Racheal Smith04/08/201909/03/2017

<colgroup><col><col><col><col span="5"></colgroup><tbody>
</tbody>





From this, I have created a new sheet, and want to run some kind of filter/lookup whereby I can select the relevant training from a drop down list, and it return a list of employees who have that training and the date they completed it, as follows:


ABCD
1Select Training Type:H&S
2
3John Smith01/05/2018
4Joe Bloggs05/05/2018
5Richard Smith02/12/2017

<colgroup><col><col><col><col span="2"></colgroup><tbody>
</tbody>



Thank you all in advance!
Russ
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
How about
In B3 copied down
=IFERROR(INDEX(Sheet1!$A$2:$A$6,AGGREGATE(15,6,(ROW(Sheet1!$A$2:$A$6)-ROW(Sheet1!$A$2)+1)/((Sheet1!$B$1:$F$1=$C$1)*(Sheet1!$B$2:$F$6<>"")),ROWS($A$1:$A1))),"")
In C3 copied down
=IFERROR(INDEX(Sheet1!$B$2:$G$6,MATCH(B3,Sheet1!$A$2:$A$6,0),MATCH($C$1,Sheet1!$B$1:$G$1,0)),"")
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,924
Members
448,533
Latest member
thietbibeboiwasaco

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