Creating a Group Training Passport

Darth_Williams

New Member
Joined
Oct 15, 2015
Messages
25
Good afternoon all,

Can I pick your collective minds for a second. I am looking to create a training passport whereby I would enter a team leader name and I would get the results from every person in that team.

So A column lists the team members, B column lists the team leaders, C column onwards shows the various training each person has received.

In essence, if I put Dave Williams in the team leader cell, then the following cells underneath will bring back the results for everyone who has Dave Williams as their team leader. My initial thought would be to use an INDEX MATCH (well my first thought was to do this in a pivot table but my line manager didn't like this) but I'm not sure that would work.

Any thoughts, hints and or tips will be most welcome.

Thanks

Dave.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Hello there. Can't you just use a filter on column B?
 
Upvote 0
On the main registry, yes, which I do all the time, but I am looking to make a stand alone summary sheet that will pull the data from the main matrix to offer a summary page instead of being bombarded with more data than you need to see
 
Upvote 0
Ah OK. A simple macro would do the job - here is a very basic one that does it - but you will probably want to add error checking, get the name from a cell, etc. Hope it helps.
VBA Code:
Sub Summariser()

Dim WhoFor As String
WhoFor = InputBox("Which boss?")
   
    ActiveSheet.Range("A1:z1").AutoFilter Field:=2, Criteria1:=WhoFor, Operator:=xlAnd
    ActiveSheet.UsedRange.SpecialCells(xlCellTypeVisible).Select
    Selection.Copy
    Sheets("Summary").Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
        :=False, Transpose:=False
        Application.CutCopyMode = False
End Sub
You will need to have your Registry sheet active and a filter on.
 
Upvote 0

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

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