Special VBA countdown timer

FootBallBat

Board Regular
Joined
Jan 26, 2012
Messages
169
I am creating a board game and I'm incorporating Excel into it.
What I'm looking for is a countdown timer that allows me to slowdown the timer.
exp: Instead of it counting down 1 second at a time it will count down 1 second every 1.5 seconds.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
here is the code for a timer.
you can try changing the seconds in ResetTime()

Code:
private gCount As Date
  
private Sub Timer()
    gCount = Now + TimeValue("00:00:01")
    Application.OnTime gCount, "ResetTime"
End Sub

Sub ResetTime()
Dim xRng As Range
Set xRng = Application.ActiveSheet.Range("A1")
xRng.Value = xRng.Value - TimeSerial(0, 0, 1)
If xRng.Value <= 0 Then
   MsgBox "Countdown complete."
   Exit Sub
End If
   Call Timer
End Sub
 
Last edited:
Upvote 0
here is the code for a timer.
you can try changing the seconds in ResetTime()

Code:
private gCount As Date
  
private Sub Timer()
    gCount = Now + TimeValue("00:00:01")
    Application.OnTime gCount, "ResetTime"
End Sub

Sub ResetTime()
Dim xRng As Range
Set xRng = Application.ActiveSheet.Range("A1")
xRng.Value = xRng.Value - TimeSerial(0, 0, 1)
If xRng.Value <= 0 Then
   MsgBox "Countdown complete."
   Exit Sub
End If
   Call Timer
End Sub

I will give it a try thank you
 
Upvote 0
here is the code for a timer.
you can try changing the seconds in ResetTime()

Code:
private gCount As Date
  
private Sub Timer()
    gCount = Now + TimeValue("00:00:01")
    Application.OnTime gCount, "ResetTime"
End Sub

Sub ResetTime()
Dim xRng As Range
Set xRng = Application.ActiveSheet.Range("A1")
xRng.Value = xRng.Value - TimeSerial(0, 0, 1)
If xRng.Value <= 0 Then
   MsgBox "Countdown complete."
   Exit Sub
End If
   Call Timer
End Sub

I cant get it to work.
I can have it countdown by 2 or greater but it wont do half seconds.
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,424
Members
448,896
Latest member
MadMarty

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top