Help with Status driven by date columns
Hello, I am trying to automate my status column that is driven by dates.
Date columns: Deployment Start, Deployment End, Planning Start, Planning End
Statuses: Planning (this is default) status; Execution, Complete
I'd like the status to default with Planning if dates are blank or within the Planning Start & End, Execution status for when between Deployment Start and End, and Complete when date is after Deployment End.
Any thoughts?
Best Answer
-
Hi @mgn2683 ,
You would just change the Column references to your Deployment columns as long as you wanted the same logic and text returned:
=IF(OR(ISBLANK([Deployment Start]@row), ISBLANK([Deployment End]@row)), "Deploying", IF(AND([Deployment Start]@row,<=Today(), [Deployment End]>=Today()), "Execution", "Complete"))
Does that work for you? Happy to help.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Hi @mgn2683 ,
Suggested formula is below. Status Formula:
=IF(OR(ISBLANK([Planning Start]@row), ISBLANK([Planning End]@row)), "Planning", IF(AND([Planning Start]@row,<=Today(), [Planning End]>=Today()), "Execution", "Complete"))
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
Hey Mark, how would I include the second set of date columns - Deployment Start & Deployment End?
Basically, "Planning" stage would only be during the Planning Start & Planning End dates, Execution & Completion would change based upon the Deployment Start & Deployment End dates.
-
Hi @mgn2683 ,
You would just change the Column references to your Deployment columns as long as you wanted the same logic and text returned:
=IF(OR(ISBLANK([Deployment Start]@row), ISBLANK([Deployment End]@row)), "Deploying", IF(AND([Deployment Start]@row,<=Today(), [Deployment End]>=Today()), "Execution", "Complete"))
Does that work for you? Happy to help.
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 422 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!