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
- Smartsheet Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 462 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!