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.
******************************************************
'Declarations Section of Module
'******************************************************
Option Explicit
'******************************************************
'FindEOM Function
'******************************************************
'This function takes a date as an argument and returns the last
'day of the month.
Function FindEOM (MyDate)
Dim NextMonth, EndOfMonth
NextMonth = DateAdd("m", 1, MyDate)
EndOfMonth = NextMonth - DatePart("d", NextMonth)
FindEOM = EndOfMonth
End Function