Changing Drop Down Value Based On Different Date Ranges
Hi All,
Is it possible to make a drop down that will change its value based on a range of dates? I need the drop down to switch between "Past Due" (> today), "This Week" (today +7), "Next Week" (between 7-14 days from today), and "Two Weeks Out" (between 7-21 days from today). Is this possible?
Thanks!
Answers
-
Hi Shannon,
Dynamic values in a drop down list aren't possible. However, are you asking to change the value in a drop down column based on dates? That is possible but you don't want to use a drop down. You want to use a text/number column.
You'll use nested IFs to determine the value displayed in the column. The syntax will be:
=IF([due date]@row<today(), "Past due", IF(AND([due date]@row>=today(), [due date]@row<=today(7)), "This Week", IF((AND([due date]@row>today(7), [due date]@row<=today(14)), "Next Week", IF(AND([due date]@row>today(14), [due date]@row<=today(21)), "Two Weeks Out", "More than 2 weeks out"))))
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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!