So I am trying to create a log for run times for some furnaces. What I am trying to show is that the furnaces were not ran past/before a certain amount of minutes, I wanted the background to fill green when the time is between the minimum and maximum time allotment, and turn red when it is not. The conditional formatting works perfectly on the cells without formulas, but when I use
=IF(C16>0,1440*(C16-D16),)
to take the start time (C16), and end time (D16) and 1440 to find minutes, and then set the conditional formatting to turn green if it is between the cells that state 1-10 minutes, and turn red if it is not between 1-10 minutes. the only problem I am facing is that the cells that equal the minimum time are turning red instead of green. To make things worse, this changes frequently, one second it will work and turn green and the next second it will be red. I have set the conditional formatting to stop if the green is true, is there any way to fix this? or create a formula that will do the job of conditional formatting?
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]10[/TD]
[TD="align: center"]12:00[/TD]
[TD="align: center"]12:01[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]20[/TD]
[TD="align: center"]12:10[/TD]
[TD="align: center"]12:30[/TD]
[TD="align: center"]20[/TD]
[/TR]
</tbody>[/TABLE]
=IF(C16>0,1440*(C16-D16),)
to take the start time (C16), and end time (D16) and 1440 to find minutes, and then set the conditional formatting to turn green if it is between the cells that state 1-10 minutes, and turn red if it is not between 1-10 minutes. the only problem I am facing is that the cells that equal the minimum time are turning red instead of green. To make things worse, this changes frequently, one second it will work and turn green and the next second it will be red. I have set the conditional formatting to stop if the green is true, is there any way to fix this? or create a formula that will do the job of conditional formatting?
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]10[/TD]
[TD="align: center"]12:00[/TD]
[TD="align: center"]12:01[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]20[/TD]
[TD="align: center"]12:10[/TD]
[TD="align: center"]12:30[/TD]
[TD="align: center"]20[/TD]
[/TR]
</tbody>[/TABLE]