Check box if date is tomorrow.
Hi all, I have this formula, =IF(OR([Start Date]@row = TODAY(1)), 1). It works currently and checks the box if its tomorrow. The only issue is that on Friday I need it to check the following Monday.
Any help would be amazing!!
Best Answer
-
I think I have got it. Try this
=IF([Start Date]@row = TODAY(1), 1, IF(AND(WEEKDAY(TODAY(1)) = 7, [Start Date]@row = TODAY(3)), 1))
The formula will check the box is start date is tomorrow. If start date is not tomorrow, then it will check if tomorrow is Saturday AND if the start date falls on a Monday to check the box
Thanks,
Aravind GP| Principal Consultant
Atturra Data & Integration
M: +61493337445
E:Aravind.GP@atturra.com
W: www.atturra.com
Answers
-
Hi @Johno251
If I understand you correctly, you want the box to be checked when the Start Date falls tomorrow or the following Monday, when it becomes Friday. You can use this formula
=IF(OR([Start Date]@row = TODAY(1), WEEKDAY(TODAY(1)) = 7), 1)
Thanks,
Aravind GP| Principal Consultant
Atturra Data & Integration
M: +61493337445
E:Aravind.GP@atturra.com
W: www.atturra.com
-
Hi @AravindGP that checks every box no matter the date...
-
Hi @Johno251
My bad, here's the formula =IF(OR([Start Date]@row = TODAY(1), AND(WEEKDAY([Start Date]@row + 1) = 7, [Start Date]@row <= TODAY(3))), 1)
Thanks,
Aravind GP| Principal Consultant
Atturra Data & Integration
M: +61493337445
E:Aravind.GP@atturra.com
W: www.atturra.com
-
Thanks for your help but that is now selecting Todays Date. @AravindGP
-
I think I have got it. Try this
=IF([Start Date]@row = TODAY(1), 1, IF(AND(WEEKDAY(TODAY(1)) = 7, [Start Date]@row = TODAY(3)), 1))
The formula will check the box is start date is tomorrow. If start date is not tomorrow, then it will check if tomorrow is Saturday AND if the start date falls on a Monday to check the box
Thanks,
Aravind GP| Principal Consultant
Atturra Data & Integration
M: +61493337445
E:Aravind.GP@atturra.com
W: www.atturra.com
-
@AravindGP Legend!! Thank you so much
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!