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.
Const intYear As Integer = [red]2020[/red]
Const intMonth As Integer = [red]1[/red]
Dim intD As Integer
Dim dat As Date
intD = 1
dat = DateSerial(intYear, intMonth, intD)
Do While Month(dat) = intMonth
Debug.Print dat & " -- " & Format(dat, "Long Date")
intD = intD + 1
dat = DateSerial(intYear, intMonth, intD)
Loop
Debug.Print " *** I am done, happy now? ***"