Hello!
I am building a production road map based on launch dates and the size of the project. I am populating an estimated kickoff date and I was able to figure out the below if statment combination to subtract the right amount of days from the launch date based on the assigned size.
BUT, I need it to assume workdays and exclude weekends.
IF({Project Size}=“XS”,DATEADD({Launch Date},-5,‘days’),IF({Project Size}=“S”,DATEADD({Launch Date},-10,‘days’),IF({Project Size}=“M”,DATEADD({Launch Date},-20,‘days’),IF({Project Size}=“L”,DATEADD({Launch Date},-40,‘days’),IF({Project Size}=“XL”,DATEADD({Launch Date},-60,‘days’),BLANK())))))
Can anyone help?
Thanks!