Viewing 14 posts - 1 through 14 (of 14 total)
  • Sad Excel Question………..
  • Whos_Daddy
    Free Member

    When you insert "=now()" into a cell which is set to a time mode (14:05:07), how can I see the seconds counting?

    mrmichaelwright
    Free Member

    print out 60 copies and make a flick book?

    piedidiformaggio
    Free Member

    Press F2 and enter once a second

    Whos_Daddy
    Free Member

    Is ST Failing me???????

    soma_rich
    Free Member

    you need a VBA loop.

    Dont think you can do it without a custom function though Stoner will be along in a minute to prove me wrong 🙁

    beamers
    Full Member

    print out 60 copies and make a flick book?

    Nice.

    AndyP
    Free Member

    why not get a watch?

    Whos_Daddy
    Free Member

    I spend too much on bikes! 😉

    soma_rich
    Free Member

    Sub count_time()
    Range("A1").value = now()

    While 1 = 1
    Range("A1").Calculate
    Wend

    End Sub

    Will have to use Ctl+C to kill it though 🙂

    plant
    Free Member

    STW has its limits (though I haven't reached them yet) so you might want to try here.

    Mr Excel

    Whos_Daddy
    Free Member

    SR – Whats that formula in thicko terms?

    djglover
    Free Member

    the first google search of excel clock reveals the vba you need to do this.

    Whos_Daddy
    Free Member

    ok 😥

    soma_rich
    Free Member

    Whos_Daddy

    Its VBA you have to go hit alt+F11 to go to the VBA editor.
    Paste in the code.
    go back to your worksheet.
    add the forms toolbar.
    draw a button on the sheet.
    assign your macro to the button

    click button and it will refresh the cell in a never ending loop.
    Not pretty but thats what he asked for 😉

    Ctl+C to kill the loop.

    🙂

    You could easily put a time constraint in :
    Sub count_time()
    Dim bob as date
    bob = now()+ 0.001
    Range("A1").value = now()

    While now() <> bob
    Range("A1").Calculate
    Wend

    End Sub

Viewing 14 posts - 1 through 14 (of 14 total)

The topic ‘Sad Excel Question………..’ is closed to new replies.