I’ve created an automation that adds To dos (Database “To do”) to an entity, when the entity’s status is updated. I want to update my rule so it calculates and set’s the Due date for the To do.
The Due date should be X days after the rule was triggered - but I don’t want the date to end up on the weekend, so Saturdays and Sundays shouldn’t count. Only work-days (Monday-Friday; Monday-Thursday for some people on my team) should count.
For example:
Rule is triggered on a Friday
Rule creates a To do with Name “ABC”, assigns assignee from Step 1, sets Due date for “2 working days after trigger” → Due date is set for the following Tuesday and not for Sunday.
It’s a bit late to revive this topic, but you could potentially leverage an external API to calculate an offset of X working days, in a similar way to what is discussed here.