Closed Thread
Results 1 to 22 of 22

Stopwatch / Timer

Hybrid View

  1. #1
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Stopwatch / Timer

    bmasella,

    Attached is a Stopwatch/Timer excel program I made that fits all your requirements. I even set it up so that you could do a SaveAs -> .xla file so you can use it as an Excel Add in and it will be available in all of your workbooks if you want.

    Here's the code for the actual Stopwatch/Timer userform. To change which cell the TimeStamp gets output to, just change the cell reference in btn_TimeStamp_Click():
    Dim tPause As Boolean
    Dim ws As Worksheet
    
    Private Sub btn_Reset_Click()
        Me.lbl_Hour.Caption = "00"
        Me.lbl_Minute.Caption = "00"
        Me.lbl_Second.Caption = "00"
        Me.btn_Reset.Enabled = False
        Me.btn_TimeStamp.Enabled = False
    End Sub
    
    Private Sub btn_StartStopResume_Click()
        
        If Me.btn_StartStopResume.Caption = ws.[B2] Then
            Me.btn_StartStopResume.Caption = ws.[B3]
            Me.btn_Reset.Enabled = False
            Me.btn_TimeStamp.Enabled = False
            Dim tH As String:     tH = Me.lbl_Hour.Caption
            Dim tM As String:     tM = Me.lbl_Minute.Caption
            Dim tS As String:     tS = Me.lbl_Second.Caption
            Dim tStart As Double: tStart = Timer - (tH * 3600 + tM * 60 + tS)
            tPause = False
            While tPause = False
                DoEvents
                tH = Int((Timer - tStart) / 3600):              If Len(tH) < 2 Then tH = "0" & tH
                tM = Int((Timer - tStart - tH * 3600) / 60):    If Len(tM) < 2 Then tM = "0" & tM
                tS = Int(Timer - tStart - tH * 3600 - tM * 60): If Len(tS) < 2 Then tS = "0" & tS
                Me.lbl_Hour.Caption = tH
                Me.lbl_Minute.Caption = tM
                Me.lbl_Second.Caption = tS
            Wend
        Else
            tPause = True
            Me.btn_StartStopResume.Caption = ws.[B2]
            Me.btn_Reset.Enabled = True
            Me.btn_TimeStamp.Enabled = True
        End If
        
    End Sub
    
    Private Sub btn_TimeStamp_Click()
        
        ActiveWorkbook.ActiveSheet.Range("B4").Value = Format(Me.lbl_Hour.Caption & ":" & Me.lbl_Minute.Caption & ":" & Me.lbl_Second.Caption, "hh:mm:ss")
        
    End Sub
    
    Private Sub UserForm_Initialize()
        tPause = True
        Set ws = ThisWorkbook.Sheets("Stopwatch")
        Me.btn_StartStopResume.Caption = ws.[B2]
        Me.btn_Reset.Enabled = False
        Me.btn_TimeStamp.Enabled = False
    End Sub
    
    Private Sub UserForm_Terminate()
        tPause = True
    End Sub


    Here's the code for the Add-in portion:
    Private Sub Workbook_AddinInstall()
        
        On Error Resume Next
        Application.CommandBars("Worksheet Menu Bar").Controls("Launch Stopwatch").Delete
        
        Dim StopwatchMacro
        Set StopwatchMacro = Application.CommandBars("Worksheet Menu Bar").Controls.Add
        With StopwatchMacro
            .Caption = "Launch Stopwatch"
            .Style = msoButtonCaption
            .OnAction = "LaunchStopwatch"
        End With
        
    End Sub
    
    Private Sub Workbook_AddinUninstall()
        
        On Error Resume Next
        Application.CommandBars("Worksheet Menu Bar").Controls("Launch Stopwatch").Delete
        
    End Sub
    Attached Files Attached Files
    Hope that helps,
    ~tigeravatar

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  2. #2
    Registered User
    Join Date
    08-13-2011
    Location
    India
    MS-Off Ver
    Excel 2016
    Posts
    5

    Re: Stopwatch / Timer

    Thanks for the code. It does as i wanted.

  3. #3
    Registered User
    Join Date
    03-30-2012
    Location
    dunfermline, scotland
    MS-Off Ver
    Excel 2003
    Posts
    1

    Re: Stopwatch / Timer

    Hello folks,

    Ive been looking for a stopwatch program, exactly as desribed on this page. Problem is that I need to call up three stopwatches each with a different title and all able to save data on the same page. Seems that all the code is here but im unsure how to setup the 2nd and 3rd stopwatches. Any ideas?

  4. #4
    Registered User
    Join Date
    04-16-2012
    Location
    United States
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Stopwatch / Timer

    Thank you so much

  5. #5
    Registered User
    Join Date
    07-13-2012
    Location
    Calgary
    MS-Off Ver
    Excel 2007
    Posts
    1

    Re: Stopwatch / Timer

    thanks, great little bit of code, Jim

  6. #6
    Registered User
    Join Date
    09-28-2012
    Location
    darwin oz
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Stopwatch / Timer

    Hi, Many thanks - excellent stuff - My need is to launch race cars in a handicap event at our club - my excel sheet calculates the handicap and puts that to a worksheet which lists cars in formup order with the start delay shown as a number, i.e. 5, 9, 14 second delay for cars 2, 3 & 4 on the grid, car 1 starts at 0:00. Your code goes a very long way to helping but I would love to be able to link the counter in your stopwatch to teh cell next to each car's start delay so that the word "GO" appears alongside each car as it's delay start time is reached, with "GO" staying alongside each entry once it has appeared. Start delays run from E:9..E63, calculated by this formula (from E9 on stopwatch worksheet)...=IF(ISNA(VLOOKUP(MATCH($B9,INPUT!$F$11:$F$65,0),INPUT!$A$11:$F$65,5)),"",VLOOKUP(MATCH($B9,INPUT!$F$11:$F$65,0),INPUT!$A$11:$F$65,5)) where "INPUT" is the worksheet that qualifying times are input to. So In the "stopwatch" worksheet I would like to have the word "GO" appear in cells F9..F63 , one by one as the delay in seconds in E9..E63 corresponds to the seconds (and minutes!) on teh stopwatch form. Any ideas would be appreciated.

  7. #7
    Registered User
    Join Date
    10-06-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Stopwatch / Timer

    I am looking for a timer.
    These are the specifications..
    1. I should be able to set the start time.
    2. It should have start pause and reset buttons like this stopwatch.

    Thank you for this code as it could help me understand a little more on how to build it.
    If you have a similar code available can you please post it.

    Thank You in advance.

  8. #8
    Registered User
    Join Date
    10-06-2012
    Location
    New Delhi
    MS-Off Ver
    Excel 2010
    Posts
    3

    Re: Stopwatch / Timer

    Hi guys,

    I have been designing my Timer as required..but it shows Type mismatch in Show command.

    Please Help

    Answer Sheet 2 - Testing.xlsm

    I have attached a copy of my file

  9. #9
    Registered User
    Join Date
    12-16-2013
    Location
    Saskatchewan, Canada
    MS-Off Ver
    Excel 2010
    Posts
    1

    Re: Stopwatch / Timer

    Thank you, Thank you, Thank you.

  10. #10
    Registered User
    Join Date
    07-22-2015
    Location
    Florida, USA
    MS-Off Ver
    2013 Pro
    Posts
    3

    Re: Stopwatch / Timer

    Any ideas on how I can run this code and open separate workbooks?
    Last edited by jeffreybrown; 07-27-2015 at 07:17 PM. Reason: Removed quote

Closed Thread

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