Countif Function for dates in a range

M

Mbanker

I want to count a range of data if a cell in a range is within a date range.
I n others, If column D is a range of dates for a 12 month period, how can I
count the # of dates tthat are in the date range 8-1-2007 through 8-31-2007?
 
R

Ron Rosenfeld

I want to count a range of data if a cell in a range is within a date range.
I n others, If column D is a range of dates for a 12 month period, how can I
count the # of dates tthat are in the date range 8-1-2007 through 8-31-2007?

=countif(d:d,">="&date(2007,8,1)) -
countif(d:d,">"&date(2007,8,31))


--ron
 
Top