Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Business Day Calculation

1178 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Dean_Harris
5 - Automation Enthusiast
5 - Automation Enthusiast

I’m wondering if anyone has thoughts on this problem. I’m currently using a WORKDAY formula to calculate the due date of project from the ordering date. However, if the deliverable is ordered after a certain time of day, let’s say noon, I don’t want the calculation to start until the following business day. In other words, I want it to calculate only full business days.

Anyone have any ideas on how this could be accomplished?

Thanks in advance!

1 Reply 1

Hi @Dean_Harris - you could calculate an “effective start date” based on whether or not the start time was after midday:

Screenshot 2020-12-04 at 16.06.07

using the formula:

DATETIME_PARSE(
    IF(
        VALUE(DATETIME_FORMAT(Start, 'H')) >= 12, 
        DATETIME_FORMAT(DATEADD(Start, 1, 'day'), 'DD/MM/YYYY'), 
        DATETIME_FORMAT(Start, 'DD/MM/YYYY')
    ), 
    'DD/MM/YYYY'
) 

Then use this new date in your WORKDAY formula.