Need a conditional formula to automate status column based on values in date columns
Here's a screenshot of a very simple sheet I've set up where I've manually set the Status. I want to automate the value selection from the "Status" dropdown based on the presence of dates (Actuals) in my Start and End columns:
- If the Start and End columns are blank, Status is "Not Started"
- If Start has a date and End is blank, Status is "In Progress"
- If Start has a date and End has a date, Status is "Complete"
Is this possible? Can someone suggest a formula with @row that I can try applying here?
Tags:
Comments
-
This should do what you want
=IF(AND(Start1 = "", End1 = ""), "Not Started", IF(Start1 = "", "Not Started", IF(End1 = "", "In Progress", "Complete")))
-
That worked; thank you!
-
Another option would be along the lines of...
=IF(ISDATE(End@row), "Complete", IF(ISDATE(Start@row), "In Progress", "Not Started"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 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
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!