Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I need to build a countdown timer and show it in a Excel spreadsheet thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Paste the following code into a Module, and run it:
Public Sub CountDown() Const oneSecond As Double = 1 / 24 / 3600 With Worksheets("Sheet1").Range("A1") .Value = .Value - oneSecond End With Application.OnTime Now + oneSecond, "CountDown" End Sub "CC" a écrit dans le message de news: ... I need to build a countdown timer and show it in a Excel spreadsheet thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What about put this information (countdowntimer) in a msgbox or form ?
CC "Ardus Petus" wrote: Paste the following code into a Module, and run it: Public Sub CountDown() Const oneSecond As Double = 1 / 24 / 3600 With Worksheets("Sheet1").Range("A1") .Value = .Value - oneSecond End With Application.OnTime Now + oneSecond, "CountDown" End Sub "CC" a écrit dans le message de news: ... I need to build a countdown timer and show it in a Excel spreadsheet thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
timer Macro | Excel Worksheet Functions | |||
Stopping a Timer / Running a timer simultaneously on Excel | Excel Discussion (Misc queries) | |||
timer macro | Excel Discussion (Misc queries) | |||
Macro With Timer Event | Excel Discussion (Misc queries) | |||
Count-down timer? (e.g. 10 days left...9...8...) | Excel Discussion (Misc queries) |