I have the following code that runs a timer which is displayed in a form. I want the timer to go past 24 hours. I have tried putting the format as "[hh]:mm:ss" but when I do this then the hours disappear and the timer starts at 8 minutes for some reason regardless of what the time in cell b6 is.
The time saved in cell b6 is the time the race starts.
Sub RClock1()
Watch = Now - Sheets("Timing Sheet").Range("B6")
UserForm1.RaceClock1.Text = Format(Watch, "hh:mm:ss")
NextTick = Now + TimeValue("00:00:01")
Application.OnTime NextTick, "RClock1"
End Sub
Thanks for your help
Bookmarks