Calculate Assigned Date Based on Drop Down Column Values and Due Date
In my Smartsheet I have a "Severity" drop down column with the following options: Critical, High, Medium, Low. There is a "Due Date" column that is filled in. I need a formula to populate an "Assigned Date" column as follows:
-If "Severity" is "Critical" or "High", "Assigned Date" will be 30 calendar days prior to "Due Date"
-If "Severity" is "Medium" or "Low", "Assigned Date" will be 90 calendar days prior to "Due Date"
I would greatly appreciate any help!
Thank you!
Kari
Best Answer
-
Give this a try:
=IF(ISDATE([Due Date]@row), IF(OR([Severity]@row = "Critical", [Severity]@row = "High"), [Due Date]@row - 30, IF(OR([Severity]@row = "Medium", [Severity]@row = "Low"), [Due Date]@row - 90, "")))
Answers
-
Give this a try:
=IF(ISDATE([Due Date]@row), IF(OR([Severity]@row = "Critical", [Severity]@row = "High"), [Due Date]@row - 30, IF(OR([Severity]@row = "Medium", [Severity]@row = "Low"), [Due Date]@row - 90, "")))
-
This should work for you:
=[Due Date]@row - IF(OR(Severity@row = "Critical", Severity@row = "High"), 30, 90)
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!