#1   Report Post  
Posted to microsoft.public.excel.misc
Bob Bob is offline
external usenet poster
 
Posts: 972
Default Stopwatch

Can Excel be programed to perform a stopwatch function? I have mutiple
runners I need to time and wanted to use excel to help capture the data.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,346
Default Stopwatch

Hi,

the function =NOW() recalculates everytime the spreadsheet recalculates and
you can manually recalculate by pressing F9. However, if you want to build a
stop watch type function you will need to write a VBA program.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"Bob" wrote:

Can Excel be programed to perform a stopwatch function? I have mutiple
runners I need to time and wanted to use excel to help capture the data.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,942
Default Stopwatch

hi
see this site for a free addin
http://www.freedownloadscenter.com/B...Stopwatch.html

regards
FSt1

"Bob" wrote:

Can Excel be programed to perform a stopwatch function? I have mutiple
runners I need to time and wanted to use excel to help capture the data.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Stopwatch

Can Excel be programed to perform a stopwatch function?

I did the following with Excel 2003 and it seems to work.


One-time-setup of the spreadsheet
---------------------------------

Start with
File New Blank workbook

To allow circular references, use
Tools Options Calculation
Check the "Iterations" checkbox.
Set "Maximum iterations" to 1 (one).

Type the letter x into cell A2.

In cell A1, put
=IF(A2="",A1+1,-1)

In cell B1, put
=IF($A$2="",IF(ROW()=$A$1,NOW(),B1),0)
Extend this down for at least as many rows as there are steps for the
time readings.

Select column B and use
Format Cells Number Custom
with the pattern
hh:mm:ss.00;;

In columns C onward, put calculations using time readings that will
appear in column B later. For example, putting
=B2-B1
in C2 and extending down would calculate difference times between steps.

Save the workbook. It'll serve as a starting point each time.


To use the stopwatch
--------------------

Open the saved workbook.

To activate the stopwatch, delete the contents of A2.

To click the stopwatch, press the F9 key . A new time reading appears in
column B each time F9 is pressed.

Once you are finished, you can (optionally) reset the spreadsheet by
typing x in A2 again. This way, the spreadsheet can be re-used without
opening it again.


Caution
-------

Allowing circular references can be a risk. Later, if you make a
circular reference in the workbook by mistake, Excel won't flag it as an
error.


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 915
Default Stopwatch

pomegranate-man wrote:
Can Excel be programed to perform a stopwatch function?


I did the following with Excel 2003 and it seems to work.


One-time-setup of the spreadsheet
---------------------------------

Start with
File New Blank workbook

To allow circular references, use
Tools Options Calculation
Check the "Iterations" checkbox.
Set "Maximum iterations" to 1 (one).

Type the letter x into cell A2.

In cell A1, put
=IF(A2="",A1+1,-1)

In cell B1, put
=IF($A$2="",IF(ROW()=$A$1,NOW(),B1),0)
Extend this down for at least as many rows as there are steps for the
time readings.

Select column B and use
Format Cells Number Custom
with the pattern
hh:mm:ss.00;;

In columns C onward, put calculations using time readings that will
appear in column B later. For example, putting
=B2-B1
in C2 and extending down would calculate difference times between steps.

Save the workbook. It'll serve as a starting point each time.


To use the stopwatch
--------------------

Open the saved workbook.

To activate the stopwatch, delete the contents of A2.

To click the stopwatch, press the F9 key . A new time reading appears in
column B each time F9 is pressed.

Once you are finished, you can (optionally) reset the spreadsheet by
typing x in A2 again. This way, the spreadsheet can be re-used without
opening it again.


Caution
-------

Allowing circular references can be a risk. Later, if you make a
circular reference in the workbook by mistake, Excel won't flag it as an
error.



I had to try it. Brilliant!


  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default Stopwatch

I had to try it. Brilliant!

You're too kind.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it possible to place a stopwatch in Excel Kari Excel Worksheet Functions 2 June 10th 10 09:16 PM
stopwatch average per mile JBT Excel Worksheet Functions 2 October 15th 08 09:30 PM
StopWatch Macros ExcelMS Excel Worksheet Functions 2 June 1st 08 05:16 PM
Stopwatch time DSR_CT Excel Discussion (Misc queries) 2 February 18th 08 08:03 AM
Stopwatch Metolius Dad Excel Worksheet Functions 1 April 11th 05 03:14 PM


All times are GMT +1. The time now is 04:38 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"