Excluding Bank Holidays from working day calc

AndyEd

Board Regular
Joined
May 13, 2020
Messages
124
Office Version
  1. 365
Platform
  1. Windows
The following provides a date 20 working days from the date selected. Is there a way to exclude UK Bank Holidays within the calculation?

VBA Code:
Dim d As Date, i As Integer
    If CLng(datevariable) > 0 Then
        d = CDate(Me.txtDateReceived.value)
        i = 20
        Me.txtDeadlineDate.value = CStr(WorkDayCalc(d, i))
    End If

Thank you
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
I am unsure if the WORKDAY or WORKDAY.INTL calculation is in the application excel worksheet formulas part of VBA.
But, if you can use that it would work for you.
But if you are just creating UDF to do just that, why not just use one of those in your workbook without creating a UDF.
(WORKDAY only has Sat & Sun as weekends, WORKDAY.INTL you can configure the days off).

Book1
ABCD
1
2
3DateDays
42024-02-1320Thu 2024-03-14WORKDAY w HOLIDAY Sched
5Thu 2024-03-14WORKDAY.INTL w HOLIDAY Sched
6HolidayListThu 2024-03-21WORKDAY.INTL w HOLIDAY Sched & 3 Day Weekends
72024-02-19
82024-02-26
Sheet2
Cell Formulas
RangeFormula
C4C4=WORKDAY($A$4,$B4,$A$7:$A$8)
C5C5=WORKDAY.INTL($A$4,$B$4,1,$A$7:$A$8)
C6C6=WORKDAY.INTL($A$4,$B$4,"0000111",$A$7:$A$8)
 
Upvote 1
Solution
Almost sorry I asked now :ROFLMAO: I'll have a play.

Thanks for the prompt response.
 
Upvote 0

Forum statistics

Threads
1,215,338
Messages
6,124,343
Members
449,155
Latest member
ravioli44

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top