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.
Function dateasinteger()
Dim startdate As Date
Dim stopdate As Date
Dim i As Double
startdate = #6/13/2003#
stopdate = #7/13/2003#
For i = CDbl(startdate) To CDbl(stopdate)
'code in here to insert to table
Cdate(i) ' changes the double back to a date
Next
End Function