You should change the StartCycle sub like the one below to make it more accurate. If you work on your excel while timer is running, your macro might stop working while other macros run and your timer will loose some steps. With the modification, you always refer to the computer timeclock so it will always be accurate.
Sub StartCycle()
Counter = Now - StrtTime
UserForm1.Label1.Caption = Format(Counter, "h:mm:ss")
RunWhen = Now + TimeSerial(0, 0, 1)
Application.OnTime RunWhen, "StartCycle", , True
End Sub
Bookmarks