How do I calculate time durations over numerous dates

M

MBubier

I am trying to enter data that was collected on different dates/times and
calculate the duration of the entire data collection. How can I enter the
dates and time such that I can calculate the duration? I am using Excel 2000
 
B

Bob Phillips

If you enter them as standard time, such as 09:15:30, then just subtract
them to get the duration, and format that as time also.

--

HTH

RP
(remove nothere from the email address if mailing direct)


MBubier said:
I am trying to enter data that was collected on different dates/times and
calculate the duration of the entire data collection. How can I enter the
dates and time such that I can calculate the duration? I am using Excel
2000
 
M

MBubier

I've got that, but what about including different dates? I tried formatting
the cell such that the date is also part of the entry but then I can not
subtract them.
 
B

Bob Phillips

Why not? It will still have a valid value, it just differs how you present
it.

One way would be

=INT(A2-A1)&" days, "&TEXT(MOD(A2-A1,1),"hh:mm:ss")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
N

Niek Otten

Format the result as Custom [h]:mm otherwise the sum will "tip over" each
24 hrs
 
Top