sumproduct i think

M

MarkN

Hello,

I'm struggling with what I think requires a sumproduct function but I can't
make it work and I'm going cross eyed...

I need to count the number of occurences of "x" in column c if the value in
column a = "text1" or "text2" but column b <> "text3".
 
J

Jacob Skaria

Hi Mark

Try the belo
=SUMPRODUCT((ISNUMBER(MATCH(A1:A10,{"text1","text2"},0)))*(B1:B10<>"text3")*(C1:C10="x"))

If this post helps click Yes
 
T

T. Valko

Try this...

=SUMPRODUCT(--(ISNUMBER(MATCH(A2:A20,{"text1","text2"},0))),--(B2:B20<>"text3"),--(C2:C20="x"))
 

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

Similar Threads

Conditional age grouping 2
sumproduct 2
How can I copy data vertically 5
Help with SUMPRODUCT Function 6
Countif/SumProduct 4
SumProduct? 4
Sumproduct query 4
#value error for sumproduct using RIGHT cmd 0

Top