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 FixStrDate(pstrDate As String) As Date
'convert string like "580723" to 7/23/1958
Dim lngYear As Long
lngYear = IIf(Left(pstrDate, 4) > Format(Date, "yymm"), _
1900, 2000) + Val(Left(pstrDate, 2))
FixStrDate = DateSerial(lngYear, _
Val(Mid(pstrDate, 3, 2)), _
Val(Right(pstrDate, 2)))
End Function