Need Help with I think an IF Statement
I am trying to generate a date in one column based on an input from a drop down in another column. We have 3 complexity levels Low, Moderate, and High. Low equals 7 days from today, Moderate equals 17 days from today, and High equals 32 days from today. Below is what I have tried and it is not working.
=IF((Complexity@row = "High", TODAY(32)), (IF(Complexity@row = "LOW", TODAY(7))), (IF(Complexity@row = "Moderate", TODAY(17))))
Best Answer
-
Hello,
It appears to be an issue of parentheses. You need to embed your next IF formula as the 'value_if_false' of the IF statement before it.
Use this one if you want to default to Moderate when the Complexity Cell is Blank: =IF((Complexity@row = "High", TODAY(32)), (IF(Complexity@row = "LOW", TODAY(7))), (IF(Complexity@row = "Moderate", TODAY(17), TODAY(17))))
Use this one if you want to instruct people to enter the Complexity when it is left blank: =IF(Complexity@row = "High", TODAY(32), IF(Complexity@row = "Low", TODAY(7), IF(Complexity@row = "Moderate", TODAY(17), "Enter Complexity")))
I hope that that help!
Answers
-
Hello,
It appears to be an issue of parentheses. You need to embed your next IF formula as the 'value_if_false' of the IF statement before it.
Use this one if you want to default to Moderate when the Complexity Cell is Blank: =IF((Complexity@row = "High", TODAY(32)), (IF(Complexity@row = "LOW", TODAY(7))), (IF(Complexity@row = "Moderate", TODAY(17), TODAY(17))))
Use this one if you want to instruct people to enter the Complexity when it is left blank: =IF(Complexity@row = "High", TODAY(32), IF(Complexity@row = "Low", TODAY(7), IF(Complexity@row = "Moderate", TODAY(17), "Enter Complexity")))
I hope that that help!
-
@Pamelam Thank you very much that worked great
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.5K Get Help
- 468 Global Discussions
- 156 Industry Talk
- 511 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!