I want to check a box if the outage was identified on a workday between 8:00-16:00

Day of week Notification Date Notification Time(military)
I have separated the time from the date and it is in military time. So I have a notification date and a notification time. I have created a help column to identify the day of the week.
I want to check a box if: the day of the week is greater than 1 and less than 7 and the time is greater than or equal to 8 and less than or equal to16
Best Answer
-
Hey @Amy A
Try this
=IF(AND(AND([Day of Week]@row > 1, [Day of Week]@row < 7), AND(TIME(Time@row, 1) >= TIME(8, 0, 0), TIME(Time@row, 1) <= TIME(16, 0, 0))), 1)
Will this work for you?
Kelly
Answers
-
Hey @Amy A
Try this
=IF(AND(AND([Day of Week]@row > 1, [Day of Week]@row < 7), AND(TIME(Time@row, 1) >= TIME(8, 0, 0), TIME(Time@row, 1) <= TIME(16, 0, 0))), 1)
Will this work for you?
Kelly -
Thank you very much!! This worked great! much appreciated!
Help Article Resources
Categories
Check out the Formula Handbook template!