View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
PCLIVE PCLIVE is offline
external usenet poster
 
Posts: 1,311
Default Count Using Multiple Columns

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

--

"PCLIVE" wrote in message
...
Possibly one way:

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

HTH,
Paul

--

"karen" wrote in message
...
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.