Produce List of Names not Qualified due to Match Error

Joined
Nov 24, 2020
Messages
6
Office Version
  1. 2016
Platform
  1. Windows
  2. MacOS
Sheet 1
Column A I have a list of Names and Column B I have their qualifications

Column A has multiples of the same name due to certain people having multiple qualifications

Sheet 2
I have an alpha roster of each person in the company

I need to find a way to produce a worksheet that shows each qualification and who from the alpha roster DOES NOT (not yelling lol) have that qualification. I’m thinking this is a Power BI or Access problem? I couldn’t figure it out in Excel how to produce names.

Thanks in advance for your time.
 

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.
Could you use something like this?

E2, F2, etc shows the list of qualifications.
Below that "x" indicates that person does not have the qualification.

21 11 14.xlsm
ABCDEFGHIJ
1NameQual
2Name 2Q 2Q 2Q 4Q 1Q 5Q 3 
3Name 5Q 2Name 1x     
4Name 3Q 4Name 2 xx   
5Name 4Q 1Name 3x xxx 
6Name 2Q 5Name 4xx x  
7Name 1Q 1Name 5 xxxx 
8Name 1Q 3
9Name 1Q 4
10Name 1Q 1
11Name 4Q 1
12Name 1Q 4
13Name 1Q 1
14Name 2Q 2
15Name 1Q 4
16Name 2Q 3
17Name 4Q 3
18Name 1Q 5
19Name 2Q 3
20Name 1Q 5
Not qualified
Cell Formulas
RangeFormula
E2:J2E2=IFERROR(INDEX($B$2:$B$100,MATCH(0,INDEX(COUNTIF($D$2:D2,$B$2:$B$100)+($B2:$B100=""),0),0)),"")
E3:J7E3=IF(OR(E$2="",COUNTIFS($A$2:$A$20,$D3,$B$2:$B$20,E$2)),"","x")
 
Upvote 0
Solution
I will give this a shot in the morning, Using the X method I can still build tables to send up, that’s a great idea! Thank you! ?
 
Upvote 0
Using the X method I can still build tables to send up
I wasn't exactly sure what format of results you were looking for. Perhaps it is this? (If not you could post a sample so we knew what we were shooting for)

21 11 14.xlsm
ABCDEFGHIJK
1NameQual
2Name 2Q 2Q 2Q 4Q 1Q 5Q 3
3Name 5Q 2Name 1Name 1Name 5Name 2Name 3Name 3
4Name 3Q 4Name 2Name 3 Name 3Name 4Name 5
5Name 4Q 1Name 3Name 4 Name 5Name 5 
6Name 2Q 5Name 4     
7Name 1Q 1Name 5     
8Name 1Q 3
9Name 1Q 4
10Name 2Q 3
11Name 4Q 3
12Name 2Q 4
13Name 4Q 4
14Name 1Q 5
Not qualified (2)
Cell Formulas
RangeFormula
G2:K2G2=IFERROR(INDEX($B$2:$B$14,MATCH(0,INDEX(COUNTIF($F$2:F2,$B$2:$B$14)+($B2:$B14=""),0),0)),"")
G3:K7G3=IFERROR(INDEX($D:$D,AGGREGATE(15,6,ROW($D$3:$D$7)/(COUNTIFS($A$2:$A$14,$D$3:$D$7,$B$2:$B$14,G$2)=0),ROWS(G$3:G3))),"")
 
Last edited:
Upvote 0
With the X method, I can simply filter each EIC and look at the names on the left to see who needs it. This will work for what I needed on my report, it would of even worked with just who had it. I just didn't think to do it this way. Thanks so much!

1636922801183.png
 
Upvote 0
You're welcome. Glad you have something that works for you. :)
 
Upvote 0

Forum statistics

Threads
1,215,669
Messages
6,126,111
Members
449,292
Latest member
Mario BR

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