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.
Dim ti As Date
ti = #12:20:59 PM#
Debug.Print Hour(ti) + ((Minute(ti) * 60) + Second(ti)) / (60 * 60)
= Hour(txtTime) + ((Minute(txtTime) * 60) + Second(txtTime)) / (60 * 60)
SELECT ImptCSV.Field1 AS ID,
Hour([Field2])+((Minute([Field2])*60)+Second([Field2]))/(60*60) AS TimDec,
ImptCSV.Field3 AS Other INTO NewTable
FROM ImptCSV;