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.
Sub test()
Dim tStart As Double
Dim tElapsed As Long
Dim i As Long
tStart = Now
For i = 1 To 27000000
Next i
tElapsed = (Now - tStart) * 86400
MsgBox "Elapsed time = " & tElapsed & " seconds"
End Sub