Populate a drop down based on date in other columns
Is it possible to auto-populate a drop down based on a date being entered over a range of columns?
Example:
Column 1 (Drop Down) Pending (Date) Review (Date) Released (Date)
Pending 2/21/19
Review 2/12/19 2/19/19
Released 2/12/19 2/19/19 2/21/19
So what I am looking for is if there is only a date in Pending, then Pending would be chosen from the drop down. But if there is a date in Pending and Review, then Review would be chosen from the drop down. And lastly, if there is a date in all three columns, then Released would be chosen from the drop down. Is this possible?
Comments
-
Try this:
=IF(Released@row <> "", "Released", IF(Review@row <> "", "Review", IF(Pending@row <> "", "Pending")))
-
That formula didn't work. It gave the error #UNPARSEABLE.
-
Hmm its working on mine when I set it up.
You may want to retype it rather than copy and paste it. Also if you are column names are different or require brackets that will need to be added. Do you have a screenshot of your actual 4 columns? I can update it accordingly.
-
My column names are slightly different but I did update them in the formula when I put them in. I have attached a screenshot of my actual sheet.
-
Okay. I reworked mine to your column names. Be sure all of the columns with dates are set as Date type columns. That was causing issues to mine as I played with it. In your drop down column, make sure you have the names or unchecked the box that restricts responses.
This might be more than you were looking for but:
=IF([Implemented Date]@row <> "", "Implemented", IF([Released Start Date]@row <> "", "Released", IF([Implementation Review Start Date]@row <> "", "Implementation Review", IF([Review Start Date]@row <> "", "Review Start Date", IF([Design Change Start Date]@row <> "", "Design Change Review", IF([Quality Review Date]@row <> "", "Quality Review", IF([Pending Start Date]@row <> "", "Pending", "Not Started")))))))
-
That worked. Thank you very much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!