Terry Morin
Terry Morin

Reputation: 33

Count values in a column that are not in a list - excel

I'm looking for a way to count values in a column that are NOT in a list.

Example would be employees filling out a form but spelled their name wrong. I'd like to count the instances where the names aren't in my list of employees. There's 65 employees in the list.

Upvotes: 2

Views: 410

Answers (1)

Harun24hr
Harun24hr

Reputation: 36880

To count wrong spelled name use COUNTIFS() function.

=SUM(--((COUNTIFS(F2:F6,B2:B6)=0)))

If you want find list of wrong spelled names then could try-

=FILTER(B2:B6,COUNTIFS(F2:F6,B2:B6)=0)

enter image description here

Upvotes: 3

Related Questions