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.
Public Function ConvertDate(varDate As String) As Date
Dim arrTemp() As String
arrTemp = Split(varDate, " ")
ConvertDate = DateSerial(CInt(Replace(arrTemp(3), "'", "")), month("01-" & arrTemp(2) & "-2009"), CInt(arrTemp(1)))
End Function