Multiple IF function formula not working
I am wondering why my formula is unparseable:
=IF(Proof@row = "Waiting for Proof", [Proof Start Date]@row + 30), IF(Proof@row = "Family Service Rep", [Proof Start Date]@row + 14))
If my proof reads "Waiting for Proof" I'd like it to calculate a due date of 30 days from the proof start date. However, if the proof reads "Family Service Rep" then I'd like it to calculate a due date of 14 days after the start date. Columns are set to date for both proof start date and proof due date. Ideally I would like to add a third element.
I can get the formula to work with a single variable: =IF(Proof@row = "Waiting for Proof", [Proof Start Date]@row + 14)
Best Answer
-
Just take out the parentheses:
=IF(Proof@row = "Waiting for Proof", [Proof Start Date]@row + 30, IF(Proof@row = "Family Service Rep", [Proof Start Date]@row + 14))
Answers
-
Just take out the parentheses:
=IF(Proof@row = "Waiting for Proof", [Proof Start Date]@row + 30, IF(Proof@row = "Family Service Rep", [Proof Start Date]@row + 14))
-
That worked- thank you!
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!