Forum Discussion
Wdstk61
Apr 09, 2023Copper Contributor
Logic Function
Can I use the logic function with time, if time > 11:59 then ...? If so, how?
- Apr 09, 2023
If you mean the logical function IF() and the comparison operator > then this could be:
=IF(A3>TIME(11,59,0),100,-100)A3 contains a time value.
Detlef_Lewin
Apr 09, 2023Silver Contributor
If you mean the logical function IF() and the comparison operator > then this could be:
=IF(A3>TIME(11,59,0),100,-100)A3 contains a time value.
Wdstk61
Apr 15, 2023Copper Contributor
Detlef_LewinThank you!