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
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!