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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!