NewbieToNerding
New Member
- Joined
- Oct 2, 2018
- Messages
- 3
Hi!
I have two schedules - a posted schedule, and one pulled from our time keeping system. I would love to set up a formula that will post the following:
If the times listed on both schedules match, or are within 6 minutes of each other, the cell will read "on time"
If the times listed on the Posted Schedule is 7 minutes or more before the time on the Actual Schedule, the cell will read "late"
If the time listed on the Posted Schedule is 7 minutes or more after the time on the Actual Schedule, the cell will read "early"
So far I've been able to piece this together:
=IFERROR(IF(C7>S7+TIME(0,6,0),"Early",IF(C7<S7+TIME(0,6,0),"Late",IF(OR(C7=S7+TIME(0,6,0),C7=S7-TIME(0,6,0)),"on time"))),"check sch'l")
Thank you!
I have two schedules - a posted schedule, and one pulled from our time keeping system. I would love to set up a formula that will post the following:
If the times listed on both schedules match, or are within 6 minutes of each other, the cell will read "on time"
If the times listed on the Posted Schedule is 7 minutes or more before the time on the Actual Schedule, the cell will read "late"
If the time listed on the Posted Schedule is 7 minutes or more after the time on the Actual Schedule, the cell will read "early"
So far I've been able to piece this together:
=IFERROR(IF(C7>S7+TIME(0,6,0),"Early",IF(C7<S7+TIME(0,6,0),"Late",IF(OR(C7=S7+TIME(0,6,0),C7=S7-TIME(0,6,0)),"on time"))),"check sch'l")
Thank you!