CountIF Q

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

I have dates listed in Column A7:A377. How can I incorporate this
formula =COUNTIF(C7:C377,"=0") to count only if the Dates in A7:A377
are less than TODAY()

Thanks
 
Try,

=SUMPRODUCT((A7:A377<TODAY())*(C7:C377=0))

Mike






- Show quoted text -

Slight twist on above, how could I count If (C7:C377,"<0") AND
(C7:C377,">4"))

In other words Count times values are between 1-4?
 
Slight twist on above, how could I count If (C7:C377,"<0") AND
(C7:C377,">4"))

In other words Count times values are between 1-4?- Hide quoted text -

- Show quoted text -

Worked it

=SUMPRODUCT(($A7:$A377<TODAY())*(C7:C377>0)*(C7:C377<4))
 
try:
=SUMPRODUCT((A1:A10<TODAY())*(B1:B10=0))
or
{=sum((A1:A10<TODAY())*(B1:B10=0))}

HTH

Regards
Sebation.g
 

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

Back
Top