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
- 62.1K Get Help
- 351 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 443 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!