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.
hours = INT(diff / 3600)
minutes = INT((diff - (hours * 3600)) / 60)
seconds = diff - (hours * 3600) - (mins * 60)
dt1 = DATETIME(2018, 6, 28, 8, 15)
dt2 = DATETIME(2018, 6, 28, 9, 35)
diffseconds = dt2-dt1
difft = DateTime(200,1,1,0,0,0)+diffseconds
? "The difference between", dt1, " and", dt2, " is", TToC(difft,2)