SUMPRODUCT with condition FIND(text) is false

G

Go Bucks!!!

Using Excel 2007

I want to do a sumproduct where one of the conditions is that "Dedicated" is
NOT present in C:C. Dedicated can appear anywhere in the text and the text
varies, so I am using a FIND.

I am not sure how to do this? Here was my quess...

=SUMPRODUCT((A:A="GOLDMAN")*(B:B=1)*(FIND(C:C<>"Dedicated)))

Thanks,
 
G

Glenn

Go said:
Using Excel 2007

I want to do a sumproduct where one of the conditions is that "Dedicated" is
NOT present in C:C. Dedicated can appear anywhere in the text and the text
varies, so I am using a FIND.

I am not sure how to do this? Here was my quess...

=SUMPRODUCT((A:A="GOLDMAN")*(B:B=1)*(FIND(C:C<>"Dedicated)))

Thanks,


The syntax for FIND is as follows:

FIND(find_text,within_text,start_num)


I would use this in your SUMPRODUCT():

ISERROR(FIND("Dedicated",C:C))
 
T

T. Valko

Using Excel 2007

Maybe this:

=COUNTIFS(A:A,"goldman",B:B,1,C:C,"<>*dedicated*")

Note that an empty cell in column C will not contain dedicated so it could
be counted if the corresponding cells in columns A and B meet their
criteria.
 

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

Top