Project stage and date in the Future
Hello Smartsheet super formula humans! I need some assistance! We are trying to create a formula where a checkbox is checked if the project meets the below criteria.
- Recurring
- On hold
- Pending approval
- + In Progress with a Go-Live date of after 3/31/21
The Recurring is its own checkbox without a formula, the On Hold, Pending approval and In Progress are in a drop down single select column and the the Go live date is in a date column. We were thinking it needs to be an If(Or statement but can't seem to get it all to flow together.
=IF(OR([Recurring]), [Project Stage]1, "Pending approval", "On Hold), 1, 0)
This is what we have to get us going but it's feeling super of as we try to get it all together. Any help would be greatly appreciated!
Best Answer
-
Does the row only need to meet 1 of the criteria:
Either:
Recurring or On hold Or Pending approval.... OR, if it's In Progress, it has a go live after 3/31/21?
If so, then this formula should work:
=IF(OR([Project Stage]@row = "Pending Approval", [Project Stage]@row = "On Hold", Recurring@row = 1), 1, IF(AND([Project Stage]@row = "In Progress", [Go Live Date]@row > DATE(2021, 3, 31)), 1, 0))
Answers
-
Does the row only need to meet 1 of the criteria:
Either:
Recurring or On hold Or Pending approval.... OR, if it's In Progress, it has a go live after 3/31/21?
If so, then this formula should work:
=IF(OR([Project Stage]@row = "Pending Approval", [Project Stage]@row = "On Hold", Recurring@row = 1), 1, IF(AND([Project Stage]@row = "In Progress", [Go Live Date]@row > DATE(2021, 3, 31)), 1, 0))
-
It it is In Progress it has a go live after 3/31/21
-
It worked with some adjustment on our end. Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!