Formula to have a check box ticked when a date is reached
Hello Smartsheet Community,
Would anybody know how to write a formula to tick a check box once a date in another column is reached.
Many thanks in advance😊
Best Answers
-
Hi Mitch,
Try something like this.
This formula will tick the box if the date is today or earlier. Because the formula contains the TODAY function, the sheet will need to på activated for the formula to update.
Make sense?
=IF(DateColumn@row <= TODAY(); 1)
The same version but with the below changes for your and others convenience.
=IF(DateColumn@row <= TODAY(), 1)
Depending on your country, you’ll need to exchange the comma to a period and the semi-colon to a comma.
Would that work?
I hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
✅Did my post help answer your question or solve your problem? Please help the Community by marking it as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Happy to help!
Apologies! I forgot to add the check for when it's blank.
Try this.
=IF(NOT(ISBLANK(DateColumn@row)); IF(DateColumn@row <= TODAY(); 1))
The same version but with the below changes for your and others convenience.
=IF(NOT(ISBLANK(DateColumn@row)), IF(DateColumn@row <= TODAY(), 1))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Answers
-
Hi Mitch,
Try something like this.
This formula will tick the box if the date is today or earlier. Because the formula contains the TODAY function, the sheet will need to på activated for the formula to update.
Make sense?
=IF(DateColumn@row <= TODAY(); 1)
The same version but with the below changes for your and others convenience.
=IF(DateColumn@row <= TODAY(), 1)
Depending on your country, you’ll need to exchange the comma to a period and the semi-colon to a comma.
Would that work?
I hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
✅Did my post help answer your question or solve your problem? Please help the Community by marking it as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Hi Andrée,
Thanks very much for the input. The formula works perfectly, but it ticks any cells without a date. How could I overcome this ? If I fill the cell with text it goes INVALID and I cannot fill the cell with a date that is far in the future.
Thanks again.
-
Happy to help!
Apologies! I forgot to add the check for when it's blank.
Try this.
=IF(NOT(ISBLANK(DateColumn@row)); IF(DateColumn@row <= TODAY(); 1))
The same version but with the below changes for your and others convenience.
=IF(NOT(ISBLANK(DateColumn@row)), IF(DateColumn@row <= TODAY(), 1))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
Yep that sure did it :).
I could probably benefit from learning some of this. You wouldn't have to bail me out all the time then.
Thanks very much again Andrée.
-
Excellent!
I'm always happy to help!
Have a fantastic week!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!