I use the following code to implement a stopwatch:
Dim NextTick As Date
Dim t As Date
Dim PreviousTimerValue As Date
Sub StartTime()
PreviousTimerValue = Sheets("timer_test").Range("O2").Value
t = Time
Call ExcelStopWatch
End Sub
Sub ExcelStopWatch()...