IF formula to return date based on drop down selection
I have a formula that is working correctly returning a date based on a drop down selection. Now I need to incorporate business days into that return date instead of total day.
I have 3 columns i'm working with, Priority, Requested date and Request due. The user will enter the date the request is received and select the priority. If P1 the due date will populate 2 weeks from the request date, P2 3 weeks and so on. I have the below formula setup and it's working great. Now I need to only calculate business days. How do I incorporate NETWORKDAYS into this formula? Every way I try returns errors.
=IF([PRF Priority]@row = "P1", [Date Sales Proposal Request Received]@row + 14, IF([PRF Priority]@row = "P2", [Date Sales Proposal Request Received]@row + 21, IF([PRF Priority]@row = "P3", [Date Sales Proposal Request Received]@row + 28, IF([PRF Priority]@row = "P4", [Date Sales Proposal Request Received]@row + 42))))
Answers
-
Try:
=IF([PRF Priority]@row = "P1", WORKDAY([Date Sales Proposal Request Received]@row, 14), IF([PRF Priority]@row = "P2", WORKDAY([Date Sales Proposal Request Received]@row, 21), IF([PRF Priority]@row = "P3", WORKDAY([Date Sales Proposal Request Received]@row, 28), IF([PRF Priority]@row = "P4", WORKDAY([Date Sales Proposal Request Received]@row, 42), "")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 67 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!