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 basIsLeapYr(DtIn As Date) As Boolean
basIsLeapYr = (DateDiff("d", DateSerial(Year(DtIn), 1, 1), _
DateSerial(Year(DtIn) + 1, 1, 1)) = 366)
End Function