I am trying to count how many times 00:01 are in a column.
My formula is =COUNTIF(G1:H679,"00:01") but I get 0 instead of whatever the
actual count is.
Is there a way to convert the time to text? For now I have put in a new
column and am manually entering the time as text, 1, 2, 3, ect
Any assistance is greatly appreciated since I have over 3500 to convert or
manually input.
Steve
Hans Knudsen - 07 Apr 2007 17:57 GMT
Try
COUNTIF(G1:H679,1/1440)
Hans
>I am trying to count how many times 00:01 are in a column.
>
[quoted text clipped - 11 lines]
>
> Steve
Teethless mama - 07 Apr 2007 22:00 GMT
=COUNTIF(G1:H679,"0:01")
> I am trying to count how many times 00:01 are in a column.
>
[quoted text clipped - 8 lines]
>
> Steve
T. Valko - 07 Apr 2007 22:19 GMT
Another one:
=COUNTIF(G1:H679,TIME(0,1,0))
Using TIME removes any ambiguity from what 00:01 means.
0 hours 1 minute?
0 hours 0 minutes 1 second?
Biff
>I am trying to count how many times 00:01 are in a column.
>
[quoted text clipped - 10 lines]
>
> Steve