Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public Function basOvrLap(StrtDtA As Date, EndDtA As Date, StrtDtB As Date, EndDtB As Date) As Boolean
'Purpose determie if two date range (intervals) overlap
'Michael Red 9/28/04
If (StrtDtB >= StrtDtA And StrtDtB <= EndDtA) Then
basOvrLap = True
End If
If (EndDtB >= StrtDtA And EndDtB <= EndDtA) Then
basOvrLap = True
End If
End Function