Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Count with criteria

0 views
Skip to first unread message

NM

unread,
Nov 12, 2008, 11:21:01 AM11/12/08
to
Hi,

I have a column B which can have input as 1, 0,a or sh. Another Column C can
have input as I,D,X,M. I want to count the number of "I"s in column C which
have "1" in column B. In other words if column B has o ans column c has I , I
do not want to count it.

Column B Column C
1 I
0 I
sh D

Thanks for your help.

John C

unread,
Nov 12, 2008, 11:27:01 AM11/12/08
to
A1: 1
A2: I
=SUMPRODUCT(--($B$2:$B$100=A1),--($C$2:C$100=A2))
--
** John C **
Please remember if your question is answered, to mark it answered :). It
helps everyone.

Sheeloo 95 64

unread,
Nov 12, 2008, 11:27:02 AM11/12/08
to
Try this in A1 (or anywhere other than B1:C100)

=SUMPRODUCT(--(B1:B100=1),--(C1:C100="I"))

Adjust 100 to the last row in your data set.

Pete_UK

unread,
Nov 12, 2008, 11:31:47 AM11/12/08
to
Try this:

=SUMIF(C:C,"I",B:B)

Hope this helps.

Pete

Mike H

unread,
Nov 12, 2008, 11:29:02 AM11/12/08
to
Try this

=SUMPRODUCT((B1:B30=1)*(C1:C30="I"))

Mike

NM

unread,
Nov 12, 2008, 3:26:11 PM11/12/08
to
Thanks much! It works!
0 new messages