From: NEHicks on
Col A
09:15
12:39
10:15
09:25
11:36

I need to count the number of times there is an entry in column A that is
between 08:00-08:59, 09:00-09:59, 10:00-10:59, etc.

So the sum would be 08:00-08:59 0
09:00-09:59 2

etc.
From: Teethless mama on


"NEHicks" wrote:

> Col A
> 09:15
> 12:39
> 10:15
> 09:25
> 11:36
>
> I need to count the number of times there is an entry in column A that is
> between 08:00-08:59, 09:00-09:59, 10:00-10:59, etc.
>
> So the sum would be 08:00-08:59 0
> 09:00-09:59 2
>
> etc.
From: Teethless mama on
=SUMPRODUCT(--(HOUR(A1:A5)=9))


"NEHicks" wrote:

> Col A
> 09:15
> 12:39
> 10:15
> 09:25
> 11:36
>
> I need to count the number of times there is an entry in column A that is
> between 08:00-08:59, 09:00-09:59, 10:00-10:59, etc.
>
> So the sum would be 08:00-08:59 0
> 09:00-09:59 2
>
> etc.
From: Chelsea on
Hi,Nehicks,

try

=SUMPRODUCT((($A$1:$A$5)>=TIME(8+ROW()-1,0,0))*(($A$1:$A$5)<TIME(8+ROW(),0,0))*1)

p.s. make sure the data format is time

HTH

Chelsea

"NEHicks" <NEHicks(a)discussions.microsoft.com> wrote in message
news:4D39A3A7-8072-47BA-AC9B-DF74A828162B(a)microsoft.com...
> Col A
> 09:15
> 12:39
> 10:15
> 09:25
> 11:36
>
> I need to count the number of times there is an entry in column A that is
> between 08:00-08:59, 09:00-09:59, 10:00-10:59, etc.
>
> So the sum would be 08:00-08:59 0
> 09:00-09:59 2
>
> etc.