Checkbox If Formula
Wondering if this is possible: I am trying to create an IF formula in a checkbox column where, based on the Start Date of one of the rows, if the date is in the future, it will not be checked, but if the date is today or in the past, it will be checked. I was playing around with the below formula but it was not working.
=IF([Start Date]2<TODAY()1,0)
Comments
-
You're missing a comma after TODAY()
=IF([Start Date]2<TODAY(),1,0)
-
THANK YOU
Jeez I feel like an idiot for missing that, it's been driving me crazy!
-
You're also going to want to use <= to denote the " if the date is today" portion.
=IF([Start Date]2 <= TODAY(),1,0)
You can also leave out the ending 0 if you want, but that's just a matter of personal preference.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!