View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default COUNTIF With Conditions

Try this:

=SUMPRODUCT(--(E3:E200<""),--(E3:E200=31),--(E3:200<=60),--(F3:F200=H5))

Better if you use clls to hold the criteria:

A1 = 31
B1 = 60

=SUMPRODUCT(--(E3:E200<""),--(E3:E200=A1),--(E3:200<=B1),--(F3:F200=H5))


--
Biff
Microsoft Excel MVP


"RoadKill" wrote in message
...
All work great.

If you can help me one more time though. How about if in E if the number
falls between 31 and 60. From there I should be able to do the next
incarnation of 61 and 90.

Thanks much

"RoadKill" wrote:

Hello,

Here is my current formula: =COUNTIF(F3:F200, H5)

What I would like it to do is to count the instances of H5 within that
range
of F3:F100 as long as the corresponding Row in Column E is equal to or
less
than 30. The range of Column E is obviously the same as F so E3:E200.

So something like COUNTIF(F3:F200, H5, IF(E3:E200<=30))

Thank you