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.
Dim myVar As String
Dim StartDate As Date
Dim EndDate As Date
Dim ThisDate As Date
myVar = "02-2018"
StartDate = CDate(myVar)
EndDate = DateAdd("d", -1, DateAdd("m", 1, StartDate))
For ThisDate = StartDate To EndDate
Debug.Print ThisDate
Next