Count Using Multiple Columns

G

Guest

In my worksheet, column B contains text and column J contains either 0,1 or
blank. I am trying to count the rows where the text in column B is a specifc
value AND column J is a 0 or a 1 not a blank. I have tried the following:

=SUMPRODUCT(--(B2:B333="Housewares"),--(J2:J333>=0))

but this is counting the blanks as well. Any help would be greatly
appreciated.
 
P

PCLIVE

Another possible way to only look at ones (1) and zeros (0) and exclude
blanks:

=SUMPRODUCT(--(B2:B333="Housewares"),--(J2:J333=0)+(J2:J333=1)-(J2:J333=""))

Regards,
Paul

--
 

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