I have a base that tracks creative campaigns with hard drop dates. I want to be able to calculate a start date for an individual campaign based on the projected number of workdays required to walk the campaign through a production cycle. My production cycles are housed in a related table with a column for each stage and a number in days for the amount of time necessary to complete each stage. Each row has a summed value for the total number of days for the production cycle. In my campaigns table, I want to calculate a start date based on the publish date by subtracting the number of days to complete the production cycle. I’m trying to use the WORKDAY function like so …
WORKDAY({Drop Date}, -{Lead Time})
When I give it a drop date of 6/5/2019 and subtract 14 days (the rollup value from my cycles table), it returns a date of 5/27/2019, which represents a difference of 9 workdays in the 14-day stretch I supplied the function. I need to figure out how to subtract 14 workdays, making the calculated date 5/21/2019.
Any advice would be greatly appreciated. Thanks.