I had asked this before and don't know what i did with the repsonses
so here goes. I need a timer that works like the clock at a sporting
event. Counts down to zero. Thanks
hi
see this site.....
http://www.mvps.org/dmcritchie/excel/datetime.htm
it a large site, all about excel and date/time. scroll down towards
the bottom. there are several timers there. one might suit your needs.
you might also do a google on excel timers. there is a lot of info out
there on this subject.
Regards
FSt1
Thanks. i actually found what I had before. which is this
Sub Timer()
CountDown = Now + TimeValue("00:00:01")
Application.OnTime CountDown, "Reset"
End Sub
Sub Reset()
Dim count As Range
Set count = [Main!B1] 'B1 contains the number of seconds for the
countdown.
count.Value = count.Value - 1
If count <= 0 Then
MsgBox "Level Complete."
Exit Sub
End If
Call Timer
End Sub
Kind of convoluted but works when inputting seconds.What i am looking
for now is a way to stop the timer and also to have an input box reset
the value in Main!B1
Any ideas?- Hide quoted text -
- Show quoted text -