COUNTIF(Time greater than 1 minute)

want to learn

New Member
Joined
Aug 25, 2007
Messages
33
I have a column with h:mm:ss. I want to count all the cells that are greater than 0:01:00. Any ideas?
Thanks.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
=COUNTIF(A1:A10,">0:01:00")

or

=COUNTIF(A1:A9,">" & 1/(24*60))

Remember that to the computer 1 = 1 day, so 1day/24hours per day*3600seconds per hour = 1 second

**Post Edited to be correct
 
Upvote 0
If you're going to use a fraction, I believe you want:
=COUNTIF(A:A,">"&1/1440)
 
Upvote 0
My apologies, I read your time measurement incorrectly earlier. I thought it said > 1second, it actually says >1minute.

Hotpepper is correct with his formulas
 
Upvote 0

Forum statistics

Threads
1,225,897
Messages
6,187,711
Members
453,435
Latest member
U4US

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top