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
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!