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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 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!