Reputation: 33
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
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)
Upvotes: 3