View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default countifs with multiple dates

Hi,

In 2003:
=SUMPRODUCT(--(Presentations=--"3/1/08"),--(Presentations<=--"3/31/08"))
or
=COUNTIF(Presentations,"=3/1/08")-COUNTIF(Presentations,"3/31/08")

In 2007 (the above or):
=COUNTIFS(Presentations,"=3/1/08",Presentations,"<=3/31/08")

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"majestyk" wrote:

I need to count the number of occurences of a range of dates eg from 1st to
31st of a given month OR set a criteria to count the occurences between 2
dates eg 1/3/08 to 7/3/08 inclusive. The named range is set to presentations
and i have tried countif/sumif and conditional sum wizard yet to no avail.
What I have come close with, but still gives a wrong answer:
=COUNTIF(Presentations,AND("="&"01 Mar 08","<="&"31 Mar 08"))
any help appreciated (dates are dd/mm/yy in Australia)