On Sun, 30 Dec 2007 05:30:00 -0800, Gary''s Student
Your formula is inconsistent.
It includes 1/1/07 but not 1/31/07.
I would think by "between" the OP probably meant to include both dates, as is
the "common" usage. Possibly he meant to exclude both dates, but I doubt that.
So either:
=COUNTIF(A1:A100,">="&DATE(2007,1,1))-COUNTIF(A1:A100,">"&DATE(2007,1,31))
or
=COUNTIF(A1:A100,">"&DATE(2007,1,1))-COUNTIF(A1:A100,">="&DATE(2007,1,31))
depending on which definition.
--ron