formula help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

A B
1 1 a7
2 2 a6
3 3 a6
4 3 a4

I would like a formula that counts how many times A:A =3 and B:B =a6
In this example, the answer is 1 THANK YOU
 
Sumproduct would be what you want, unfortunately it doesn't except entire
columns as input so you have to do something like the following:

=SUMPRODUCT(--(A1:A65535=3),--(B1:B65535="a6")) +
SUMPRODUCT(--(A65536=3),--(B65536="a6"))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top