Reputation: 63
Needing help with this formula. What I hope to achieved is that when current time past the shift time then yes, if not then no. What formula should I use?
Upvotes: 1
Views: 1670
Reputation: 81
Try this way:
=NOW()-TODAY()
=IF($C$2>C5,"Yes","No")
I think it will work.
Upvotes: 2
Reputation: 964
You can try also this one:
In Column E you write =IF($C$2-D4>0,"Yes","NO")
Next, copy the formula to other cells in column E.
Upvotes: 1