Welcome to the community, @Will_Carter! :grinning_face_with_big_eyes: Working with business hours is definitely doable. It’s mostly a matter of dividing the total number of hours needed for a task by the length of your workday, rounding up so that a partial day still adds a whole day, then subtracting one (if a job will take one day, you don’t really want to add one day because it can be finished on the same day that it starts). Here’s the formula that I came up with:
IF(Duration, DATEADD({Start Date}, ROUNDUP(Duration / 10, 0) - 1, "days"))
For this to work, I activated the “Use the same time zone (GMT) for all collaborators” option in the formula field formatting. If you prefer to leave this setting off, then remove the - 1
from the formula.