Feb 03, 2023 09:44 AM
I'm building a table with many due date columns and they all need to be automatically calculated based off of one "publication date." For example one due date might be 21 days before publication. BUT, I always want the due date to fall on a work day. How do I make that happen?
And a second, related question: I'd like to have the same sort of setup for one of the tasks but instead of an auto-populated single date, I'd like the formula to return an auto populated 3 week time range. (The weekdays are not important for that one.)
Solved! Go to Solution.
Feb 03, 2023 12:17 PM
Jessie,
I have this same situation based on email send dates. I have calculations for when the marketing theme needs to be chosen, when the products need to be picked, when the web designer needs to have it coded, when the approvals need to be done, etc.
It's a super-simple formula. For example, the deadline set for choosing the marketing theme is 12 business days before the send:
Feb 03, 2023 12:17 PM
Jessie,
I have this same situation based on email send dates. I have calculations for when the marketing theme needs to be chosen, when the products need to be picked, when the web designer needs to have it coded, when the approvals need to be done, etc.
It's a super-simple formula. For example, the deadline set for choosing the marketing theme is 12 business days before the send:
Feb 04, 2023 02:27 AM
> I'd like the formula to return an auto populated 3 week time range. (The weekdays are not important for that one.)
Hm, so if the publication date is, say, 1 Jan 2023, you'd want it to show 22 Jan 2023 for a specific type of task? If so, some sort of `IF()` or `SWITCH()` to identify whether this record was that type of task, followed by a `DATEADD()` would do the trick. I feel like I don't understand what you mean by a 3 week time range though, apologies if this is off the mark