IF and OR nested functions for setting Due Dates based on Project Size
Hi folks,
I've been Googling around to try and find some information regarding my challenge.
Basically I need to set up this formula to assign a Projected Due date based firstly on the Date of Submission (Date Column) +5 days for a small project or +10 days for a Large project. I have columns filled through for entry for the project size, a dropdown box within the same row that states whether "Large" or "Small".
I've created this function to handle the IF portion for Small Projects:
=IF([Project Size]@row = "Small", (WORKDAY([Date of Submission]1, +5)))
And this one for "Large" projects:
=IF([Project Size]@row = "Large", (WORKDAY([Date of Submission]1, +10)))
How can I combine these two into a single formula?
Here's what I have tried that returns UNPARCEABLE:
=IF(OR([Project Size]@row = "Small", (WORKDAY([Date of Submission]1, +5),(=IF([Project Size]@row = "Large", (WORKDAY([Date of Submission]1, +10))))
The end goal is to set an Automation reminder for the Reviewer if the 'Projected Completion Date' is passed and the 'Review Completed' box is not set to 'Yes'
Thanks in advance!!
Best Answer
-
=IF([Project Size]@row = "Small", WORKDAY([Date of Submission]@row, +5),IF([Project Size]@row = "Large", WORKDAY([Date of Submission]@row, +10),""))
Answers
-
=IF([Project Size]@row = "Small", WORKDAY([Date of Submission]@row, +5),IF([Project Size]@row = "Large", WORKDAY([Date of Submission]@row, +10),""))
-
BOOM, you got it! Wish I could buy you a virtual beer! MANY thanks!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 137 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!