Deadline based on Priority dropdown menu
Hello all,
I am using SS to process work orders. People fill out a form which has a priority dropdown column with classifications such as urgent, semi urgent, can wait etc... I wanted to see if i could write a formula in the deadline column to calculate a date based on the priority picked. ie- if someone picks urgent, the deadline would calculate a date 3 days after the date the form was filled out, if they picked semi-urgent then it would calculated a week later. if they picked can wait it would put no date.... Is this possible?
Comments
-
Yes this is feasible. You need to create a date type column. Assuming you are referring a dropdown column titled "Urgency" enter the following in the date type column:
=IF(Urgency1 = "Urgent", TODAY(3), IF(Urgency1 = "Semi-Urgent", TODAY(7), ""))
-
Thanks!
-
This is an easy little formula... I'm trying to modify it slightly to create a deadline based WORKDAY, but can't get it to process. Rather than setting a deadline for 3 days, I need it to be 3 WORKDAYs.
-
Found the err of my ways... Got the formula to work:
=IF(Urgency@row = "Urgent", WORKDAY([Date Submitted]@row, 1), IF(Urgency@row = "Routine", WORKDAY([Date Submitted]@row, 3), ""))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.1K Get Help
- 352 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 135 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!