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
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!