The following provides a date 20 working days from the date selected. Is there a way to exclude UK Bank Holidays within the calculation?
Thank you
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