Forum Discussion
sDOW84
Jul 07, 2024Copper Contributor
Using SUMIF with Greater/less than times
Hi there, I have a spreadsheet that calculates a time. I want to automate a count of how many are >3:00 and <3:00. I use =SUMIF(M2:M110,"<3:00") But instead of getting an answer with a whole ...
- Jul 07, 2024
=COUNTIF(M2:M110,"<3:00")
If you want to COUNT how many are >3:00 and <3:00 then i'd suggest applying COUNTIF.
OliverScheurich
Jul 07, 2024Gold Contributor
=COUNTIF(M2:M110,"<3:00")
If you want to COUNT how many are >3:00 and <3:00 then i'd suggest applying COUNTIF.
- sDOW84Jul 08, 2024Copper Contributor
OliverScheurich Thank you! That worked!