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 myDateTime(dtVar)
myDateTime = Year(dtVar) & Right("0" & Month(dtVar), 2) & Right("0" & Day(dtVar), 2) _
& Right("0" & Hour(dtVar), 2) & Right("0" & Minute(dtVar), 2) & Right("0" & Second(dtVar), 2)
End Function