Skills Matrix Comparison in Excel

WAMMatrix

New Member
Joined
Jan 8, 2020
Messages
3
Office Version
  1. 365
  2. 2019
  3. 2013
Platform
  1. Windows
Good afternoon all,

I've created a Skills Matrix in Excel where engineers listed in columns can select their skill set against each application. They can either choose NONE, BASIC, INTERMEDIATE and ADVANCED (An Example is shown in the Skills Matrix Diagram.jpg attachment.

Now, what I want to do, is under another Tab (titled Statistics), my manager can select an engineer from the drop down list, and it will display the same column that it does in the skills matrix but for ever application that the engineer has selected NONE or BASIC, it will then display engineers in another column (running parallel) that have INTERMEDIATE or ADVANCED skills for that app.

The idea being that my manager can see who can provide training to those with No and Basic skills (as shown in the Comparison Example.jpg.
 

Attachments

  • Skills Matrix Diagram.jpg
    Skills Matrix Diagram.jpg
    213.8 KB · Views: 31
  • Comparisson Example.jpg
    Comparisson Example.jpg
    200.1 KB · Views: 31

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hi WAM,
the simplest start is a MATCH formula to find out for each row if/when the first occurance of "INTERMEDIATE" is. For 7-zip that's 3 (the 3rd column). With an OFFSET formula you could than pick up the name of that person (using the MATCH result).
If you want a list of employees, that's a bit harder. You'd need an array formula with a TEXTJOIN / concat function (tried searching for it, but couldn't find a quick tutorial).
Cheers,
Koen
 
Upvote 0
Thank you so much for your response. I'll give it a try.

Really appreciate your input.
 
Upvote 0
So use Power Query (Get&Transform)
Code:
// Table1
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    Unpivot = Table.UnpivotOtherColumns(Source, {"Application Name"}, "Attribute", "Value")
in
    Unpivot
then Insert Pivot Table
- use an external data source
- choose Query - Table1
ok
and add fields to appropriate areas
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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