View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Elkar Elkar is offline
external usenet poster
 
Posts: 964
Default Using COUNTIF and OR

See if this works for you:

=SUMPRODUCT((A1:A6="A")+(A1:A6="C"),--(ISNUMBER(B1:B6)))

HTH
Elkar


"Janie" wrote:

I know COUNTIF isn't the right function because I know it cannot use logic
operators. Here's what I am trying to accomplish:

Col A Col B
A 5
B 6
C 3
A 3
A
B 7

The question is, how many numbers in Column B correspond to EITHER A or C?

Recommendations?