Derevin
I have assumed your data is in A1:A1000
Set up a table (I've assumed J1:J5) with
<7
<15
>15
Cannot determine
Outside report dates
and set up the following formulas alongside
=COUNTIF($A$1:$A$1000,"<=7")
=SUMPRODUCT(($A$1:$A$1000>7)*($A$1:$A$1000<=15))
=COUNTIF($A$1:$A$1000,">15")
=COUNTIF($A$1:$A$1000,J4)
=COUNTIF($A$1:$A$1000,J5)

Signature
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
nick_hodgeTAKETHISOUT@zen.co.ukANDTHIS
www.nickhodge.co.uk
> Hello,
>
[quoted text clipped - 14 lines]
> specify a range of numbers, or a list of values, but I haven't been
> able to find a way to get Excel to do this.
derevin@gmail.com - 01 Dec 2006 21:14 GMT
Nick,
That's beautiful, especially the clever use of SUMPRODUCT. Thank you
so much!
> Derevin
>
[quoted text clipped - 42 lines]
> > specify a range of numbers, or a list of values, but I haven't been
> > able to find a way to get Excel to do this.