+ Reply to Thread
Results 1 to 5 of 5

time tracker

  1. #1
    Forum Contributor
    Join Date
    05-22-2006
    Posts
    103

    Unhappy time tracker - please help

    hi,please help me with this:
    im doing a real time tracker, if i click on the cell A1, cell C1 will display the status START and cell D1 will display the current time only and when i am done, i will click on cell B1 and cell C1 will display the status STOPPED and cell E1 will display the current time only and cell F1 will display the total time consumed from D1 and E1, and when i decide to continure my work i want F1 to be updated with the current time consumed.....how will do this?....please help me...i really need this to run....thanks so much

  2. #2
    Bob Phillips
    Guest

    Re: time tracker - please help

    'This is worksheet event code, which means that it needs to be
    'placed in the appropriate worksheet code module, not a standard
    'code module. To do this, right-click on the sheet tab, select
    'the View Code option from the menu, and paste the code in.



    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Const WS_RANGE As String = "A1:B1"

    If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
    With Target
    If .Column = 1 Then
    Me.Cells(.Row, "C").Value = "START"
    Me.Cells(.Row, "D").Value = Time
    Me.Cells(.Row, "D").numberform = "hh:mm:ss"
    Else
    Me.Cells(.Row, "C").Value = "STOPPED"
    Me.Cells(.Row, "E").Value = Time
    Me.Cells(.Row, "E").numberform = "hh:mm:ss"
    Me.Cells(.Row, "F").Value = Me.Cells(.Row, "F").Value + _
    Me.Cells(.Row, "E").Value - Me.Cells(.Row, "D").Value
    Me.Cells(.Row, "F").numberform = "hh:mm:ss"
    End If
    End With
    End If
    End Sub


    --
    HTH

    Bob Phillips

    (replace somewhere in email address with gmail if mailing direct)

    "tweety127" <tweety127.2bz4qt_1154625010.6715@excelforum-nospam.com> wrote
    in message news:tweety127.2bz4qt_1154625010.6715@excelforum-nospam.com...
    >
    > hi,please help me with this:
    > im doing a real time tracker, if i click on the cell A1, cell C1 will
    > display the status START and cell D1 will display the current time only
    > and when i am done, i will click on cell B1 and cell C1 will display the
    > status STOPPED and cell E1 will display the current time only and cell
    > F1 will display the total time consumed from D1 and E1, and when i
    > decide to continure my work i want F1 to be updated with the current
    > time consumed.....how will do this?....please help me...i really need
    > this to run....thanks so much
    >
    >
    > --
    > tweety127
    > ------------------------------------------------------------------------
    > tweety127's Profile:

    http://www.excelforum.com/member.php...o&userid=34673
    > View this thread: http://www.excelforum.com/showthread...hreadid=568006
    >




  3. #3
    Forum Contributor
    Join Date
    05-22-2006
    Posts
    103

    Follow Up

    i run the code and it worked but i encountered this error "run-time error 438" - Object doesn't support this property or method......thanks so much....

  4. #4
    Forum Contributor
    Join Date
    05-22-2006
    Posts
    103

    Why is it not working after closing the file and openning it up again?

    hi bob,
    just a question...
    why is it when i save the file containing the code you sent me and tried to open it again, the code doesn't work anymore....

  5. #5
    Bob Phillips
    Guest

    time tracker

    Sounds like events may be turned off.

    Try adding this to the end of the code

    Application.EnableEvents = True

    and also type that statement in the immediate window.

    --
    HTH

    Bob Phillips

    (replace somewhere in email address with gmail if mailing direct)

    "tweety127" <tweety127.2bz9df_1154631008.3591@excelforum-nospam.com> wrote
    in message news:tweety127.2bz9df_1154631008.3591@excelforum-nospam.com...
    >
    > hi bob,
    > just a question...
    > why is it when i save the file containing the code you sent me and
    > tried to open it again, the code doesn't work anymore....
    >
    >
    > --
    > tweety127
    > ------------------------------------------------------------------------
    > tweety127's Profile:

    http://www.excelforum.com/member.php...o&userid=34673
    > View this thread: http://www.excelforum.com/showthread...hreadid=568006
    >




+ Reply to 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