IF AND Formula Workaround
Comments
-
-
=IF(AND([End Date]@row <= TODAY() + 3, NOT(ISBLANK([End Date]@row)), OR(Status@row = "In Progress", Status@row = "Not Started")), 1, 0)
Broken down:
=IF(
3 Criteria AND statement
AND(
First criteria end date is within next three days or in the past
[End Date]@row <= TODAY() + 3,
Second criteria end date is not blank
NOT(ISBLANK([End Date]@row)),
Third criteria: opens or statement that returns a true if status is in progress or not started
OR(
Status@row = "In Progress",
Status@row = "Not Started")
),
Returns 1 if criteria is met, 0 if not.
1, 0)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 466 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 64 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!