Excel VBA Tips n Tricks #18 Stopwatch in Excel

📊 Free Workbooks: www.excelvbaisfun.com/links?u...
🥷Join Excel Ninja Pro: www.excelvbaisfun.com/ninjapr... Months FREE On Annual Plan Auto Applied)
🥷Excel Ninjas FB Group: www.excelvbaisfun.com/xlninjas (Free downloads, Trainings, Live Q&A and more)
Here's a stopwatch you can make with very few lines of code in Excel.
Fantastic Developer Tools:
🔒 Transform Any Excel File Into A Locked EXE: www.excelvbaisfun.com/secure-... (25% off with code ‘25OFF’)
🟡 Create Custom Installers: www.excelvbaisfun.com/custom-...
👋 Business Inquiries, Consulting, Comments, etc: www.excelvbaisfun.com/contact/

Пікірлер: 25

  • @ExcelVbaIsFun
    @ExcelVbaIsFun11 жыл бұрын

    Wow! Thanks Tom. I'm putting aside some time this weekend to make some more. Lemme know if you have any questions/topics. Dan

  • @ExcelVbaIsFun
    @ExcelVbaIsFun11 жыл бұрын

    Hmm. . . Good idea, I was wondering what to do with that, but went blank. Lemme try to implement this in a new video. Thanks for your kind words. Dan

  • @TomSaladin
    @TomSaladin11 жыл бұрын

    Hi Dan, Thank you for this channel. I have been following Bill, MrExcel, Mike ExcelisFun & many others for many years. Now, finally the channel I have been waiting 4. I have checked out many VBA videos on KZread channels & they're OK for specific things but your's shows things In the way the same "teaching way" that Mike and Bill do so well. I look forward to watching every video after watching a few dozen so far. Thank You again & keep up the great work!

  • @ExcelVbaIsFun
    @ExcelVbaIsFun10 жыл бұрын

    Merry Christmas everyone. I hope God blesses you richly this upcoming year. Remember, you ARE a success!! Believe it, be it! Blessings my friends!! Dan

  • @krn14242
    @krn1424211 жыл бұрын

    Thanks Dan. I have used a timer before, but only 3 seconds at a time.

  • @TheTank997
    @TheTank99711 жыл бұрын

    Thanks Dan! The only specific question about VBA I can even think of right now is about "syntax". I worked with a great SQL guy who knew syntax in a way I never I could understand but I now think you can explain it in a way he could not. He was from Brazil so he did have a disadvantage :)

  • @donaldgoff6633
    @donaldgoff663311 жыл бұрын

    You removed the stop button. I would think setting the Stop button to put "Now" in column "B" and give the difference between the two in column "C" would complete this. Good work. Thanks for your help.

  • @tristanmartel503
    @tristanmartel5036 жыл бұрын

    great video man

  • @kcedrickd
    @kcedrickd7 жыл бұрын

    Hi, Dan! This is very helpful. However, the timer stops when going to a different application (e.g. word, internet explorer). Is there any code that will allow the timer to run even if this excel workbook is minimized (not closed)? Thanks! I hope for your response as regards this matter.

  • @dedesudjadi4341
    @dedesudjadi43416 жыл бұрын

    good project...

  • @nilsanity2630
    @nilsanity26309 жыл бұрын

    i have a question: is there a way that the macro I have would run on a specific time? lets say I would like them to run every 00:00 and 00:30?

  • @joshualong6732
    @joshualong67326 жыл бұрын

    Is there a way that I can get the timer to count to the tenths or hundredths of a second?

  • @karazadakis6164
    @karazadakis616410 жыл бұрын

    This tutorial worked great for what I was trying to do! My only question is, if I wanted to have a timer from B2 to B6 and then B8 to B12, how would I do that? Or what if I wanted to have the timer above a cell of text. Can you specify which cells the timer works in rather than just where it starts?

  • @ExcelVbaIsFun

    @ExcelVbaIsFun

    10 жыл бұрын

    the b2 through b6 and skipping b7 thing could be done with this code so that it skips row 8 and ends at row 12 if nr=7 then nr=8 elseif nr=13 then exit sub end if cells(nr,1)=Time

  • @vinaymadhukar
    @vinaymadhukar3 жыл бұрын

    Thank you for this!

  • @ExcelVbaIsFun

    @ExcelVbaIsFun

    3 жыл бұрын

    You're so welcome!

  • @AnirbanSahaanirban
    @AnirbanSahaanirban7 жыл бұрын

    Hello... Can u tell me that what will be stop time vba code instead of Reset

  • @randulakarunajeewa1806
    @randulakarunajeewa180610 жыл бұрын

    I have tried this but I keep getting a Error 400 and the time is not displayed when I use the start button.

  • @jayakumarsj1702
    @jayakumarsj17027 жыл бұрын

    what is the coding for stop command

  • @RaajKanchan
    @RaajKanchan6 жыл бұрын

    That's it

  • @JohnvL
    @JohnvL9 жыл бұрын

    waardeloos dit

  • @ricardobatista3807
    @ricardobatista38078 жыл бұрын

    Thank you, Dan. Suggestion: the first 2:23 minutes are redundant (i.e., I believe viewers would appreciate it if you got rid of it).

  • @garagebandnorteno4749
    @garagebandnorteno47493 жыл бұрын

    What is nr

  • @jhonsalasvidal5451
    @jhonsalasvidal54519 жыл бұрын

    me sale error 404

  • @jhonsalasvidal5451
    @jhonsalasvidal54519 жыл бұрын

    Solucion Sub StartTimer() nr = ThisWorkbook.Sheets("Hoja1").Cells(Rows.Count, 1).End(xlUp).Row + 1 Cells(nr, 1) = Time End Sub