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
- Smartsheet Customer Resources
- 63K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 305 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!