Results 1 to 3 of 3

Countdown Timer

Threaded View

  1. #1
    Registered User
    Join Date
    10-12-2011
    Location
    Orlando, Florida
    MS-Off Ver
    Excel 2010
    Posts
    2

    Countdown Timer

    I have VBA code for a Countdown timer that works great for one cell per sheet, but I want it to work for multiple cells in the same column.

    This code works for one cell. In this case it is referencing cell G6. But I would like to run the timer on any active cell in Column G.

    I tried this (Set Count = ActiveCell.Range("G4:G100").Select), and some other variations of that same concept, but it does not work. I get error type "Mismatch". I'm completely stuck. Any help is much appreciated.

    Sub Countup()
    
    Dim CountDown As Date
    
    CountDown = Now + TimeValue("00:00:01")
    
    Application.OnTime CountDown, "Realcount"
    
    End Sub
    
    Sub Realcount()
    
    Dim Count As Range
    Set Count = [G6]
    Count.Value = Count.Value - TimeSerial(0, 0, 1)
    If Count <= 0 Then
    
    MsgBox "Countdown complete."
    
    Exit Sub
    
    End If
    
    Call Countup
    
    End Sub
    Last edited by gkokaisel; 10-13-2011 at 07:54 PM. Reason: Added Code Tags

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1