NuMs
NuMs

Reputation: 149

Google Sheets COUNTIF multiple conditions

I have a sheet with data similar to this:

Example Image

Trying to have it check the value of ColA then check if ColB and ColC have matching values.

I tried =COUNTIFS(A:A,"One",B:B,C:C). In the example above it returns 2 when it should be 3, not sure what's happening.

Anyone know what I'm doing wrong?

Upvotes: 0

Views: 1734

Answers (1)

JPV
JPV

Reputation: 27242

Try:

=sumproduct(A:A="One", B:B=C:C)

Upvotes: 3

Related Questions