Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I would like to click in a cell and have the hh:mm:ss populate that cell. I
am timing how long it takes for water to drop two inches. So I have a start time, a middle time (1st inch) and an end time (2nd inch). Then I need to calculate the elapsed time from the middle to the end and have that difference dispalyed in a fourth cell. Help? Please? Pretty Please? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Tom
Start A1 Mid B1 End C1 Did you try C1-B1 Mike "Tom" wrote: I would like to click in a cell and have the hh:mm:ss populate that cell. I am timing how long it takes for water to drop two inches. So I have a start time, a middle time (1st inch) and an end time (2nd inch). Then I need to calculate the elapsed time from the middle to the end and have that difference dispalyed in a fourth cell. Help? Please? Pretty Please? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In the "start" cell type:
CTRL + SHIFT + ; to insert the current time. Repeat for the mid and end cells. Joe "Tom" wrote: I would like to click in a cell and have the hh:mm:ss populate that cell. I am timing how long it takes for water to drop two inches. So I have a start time, a middle time (1st inch) and an end time (2nd inch). Then I need to calculate the elapsed time from the middle to the end and have that difference dispalyed in a fourth cell. Help? Please? Pretty Please? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
add a button on the excel sheet
use this macro function Sub Button1_Click() If Len(Cells(1, 1).Value) 0 Then If Len(Cells(1, 2).Value) 0 Then Cells(1, 3).Value = Now() Cells(1, 5).Value = "=C1-B1" Else Cells(1, 2).Value = Now() End If Else Cells(1, 1).Value = Now() End If End Sub this is a crude example, please purify this as per you requirements. note that in the cells function, first paramenter is the row number and the second parameter is the column number. -- Kind Regards, Satti Charvak Only an Excel Enthusiast Noida, India "Tom" wrote: I would like to click in a cell and have the hh:mm:ss populate that cell. I am timing how long it takes for water to drop two inches. So I have a start time, a middle time (1st inch) and an end time (2nd inch). Then I need to calculate the elapsed time from the middle to the end and have that difference dispalyed in a fourth cell. Help? Please? Pretty Please? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gravity says that the drop of water will fall 16 feet in the first
second. You will need resolution to thousanths of a second, so you really need not bother with hh:mm:ss Tom wrote: I would like to click in a cell and have the hh:mm:ss populate that cell. I am timing how long it takes for water to drop two inches. So I have a start time, a middle time (1st inch) and an end time (2nd inch). Then I need to calculate the elapsed time from the middle to the end and have that difference dispalyed in a fourth cell. Help? Please? Pretty Please? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
straight time, time and a half, and double time | Excel Discussion (Misc queries) | |||
Calculate Ending time using Start Time and Elapsed Time | Excel Worksheet Functions | |||
Subtracting Dates to get total time work time excluding weekends | Excel Discussion (Misc queries) | |||
Calculating days & time left from start date/time to end date/time | Excel Worksheet Functions | |||
Remove time from a date and time field? Format removes the displa. | Excel Worksheet Functions |