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.
YourRealDate = DateSerial(Left[YourField],4),Mid[YourField],5,2),Right[YourField],4))
Dim strADate As String
Dim datMyDate As Date
strADate = "20101021"
datMyDate = CDate(Mid(strADate, 5, 2) & "/" & Right(strADate, 2) & "/" & Left(strADate, 4))
MsgBox datMyDate