0
votes

I'd like to add x amount of days to a start date, but excluding certain holidays so they are not included in the days apart.

For instance I have a start date of 1/1/2020 and would like to add 75 days from that date, but for the holiday of 1/18/2020 I want it to not include this day in the calculation because it is a holiday. I know there is the Workday formula which excludes holidays and adds business days only but I want to add all days including weekends. What formula would accomplish this?

Thanks in advance

1
So you want to include weekends and working days and only exclude holidays?? - Gary's Student
Correct @Gary'sStudent - johncap

1 Answers

1
votes

You want WORKDAY.INTL()

=WORKDAY.INTL("1/1/2020",75,"0000000","1/18/2020")

the holidays can also be a range:

=WORKDAY.INTL("1/1/2020",75,"0000000",B1:B20)