Forum Discussion
Mikedgw1
Jul 31, 2022Tin Contributor
Formula help
I need a formula that returns a 1 or 0 based on if a cell is <=4:00.
That is 4 minutes. 0 if above and 1 if lower.
Any help would be appretiated.
B1 = IF(A1>VALUE("00:04:00"),0,1)In cell A1 you have the timecode. In B1 the If() function.