Time measuring formula for bicycle race for kids

scarlet_dragon

New Member
Joined
Sep 29, 2011
Messages
2
Hey Everybody,

I am new on the forum and would really need your help. I am beginner in using Excel (2007).

Me and my friends are organizing a bicycle race for the kids in town. I would like to now if it is possible to do a time measuring with excel.

Here is how I plan to do the event: There will be a person with a laptop at the finish line. He will be entering the racing numbers into a excel sheet as the kids cross the line. The excel should put the times after a racing number is entered.

Here is an example - I tried using the Now formula, but with not many luck: (When I entered the first race number the time was 19:31 but the values changed as the time went on. Also it would be great to display seconds too)
example.png


I would really appreciate it if somebody could help me. ;) (If you happen to be from Transylvania I invite you for a drink.)

Thanks anyway.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hi and welcome,

Copy this User Defined Function to a Standard Module
Alt+F11 to open the VBEditor
Insert > Module
Paste the code below in the right-panel

Code:
Public Function RaceTime() As Date
    RaceTime = Now
End Function

in B2 put this formula
=IF(A2<>"",RaceTime(),"")
copy down

Format column B as hh:mm:ss

Save the file as macro-enabled (.xlsm)

HTH

M.
 
Upvote 0
Thank you! :)

If you need something in graphic design just let me know, I'm more than happy to help you. ;)

You are welcome and tks for the feedback

Good to know
"If you need something in graphic design just let me know, I'm more than happy to help you."

:)

M.
 
Upvote 0

Forum statistics

Threads
1,224,514
Messages
6,179,223
Members
452,896
Latest member
IGT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top