Formula help please
I just can't get this to work. The first part of the formula works, but I having difficulty getting it to return a different option
First Part =IF(Urgency@row = "High", [Date Issued]@row + 3)
=IF(Urgency@row="High"(), [Date Issued]@row + 3), IF(Urgency@row = "Medium"(),[Date Issued]@row +7), IF(Urgency@row = "Low"(),[Date Issued]@row +14)))
I'm almost sure it's something to do with the brackets. Any help would be great
Tha;nks Jo
Best Answer
-
Here you go.
=IF(Urgency@row = "High", [Date Issued]@row + 3, IF(Urgency@row = "Medium", [Date Issued]@row + 7, IF(Urgency@row = "Low", [Date Issued]@row + 14)))
You were close, the extra () after "High"/"Medium"/"Low" should be removed and the closing ) after your If statements should be at the very end.
Answers
-
Here you go.
=IF(Urgency@row = "High", [Date Issued]@row + 3, IF(Urgency@row = "Medium", [Date Issued]@row + 7, IF(Urgency@row = "Low", [Date Issued]@row + 14)))
You were close, the extra () after "High"/"Medium"/"Low" should be removed and the closing ) after your If statements should be at the very end.
-
Thank you so much Dan.
-
You are welcome! Glad I could Help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!