Excel assistance: Tracking elapsed time

R

rwdutton

Here's the problem:
I have H5, date of issue (mm/dd/yyyy); I5, hour of issu
(00:00:00)note: 24 hour clock; J5, date of customer receip
(mm/dd/yyyy); K5, hour of customer receipt (00:00:00) note: 24 hou
clock. What I am trying to do is capture elapsed time from issue t
receipt. Some issues and receipts occur on the same day which negates
need to convert date to hours, the proble is when the following occurs
H5, 4/21/2004; I5, 15:17:00, J5, 4/24/2004; K5, 13:08:01. Can anyon
help with a formula that I can apply to capture the total elapsed time
 
E

Earl Kiosterud

rw,

If these are being put in as real times, you can add the date and time of
receipt cells, and subtract them from the sum of the date and time of issue.
The first set of () is for clarity only.

=(J5+K5)-(H5+I5)

Format (Format - Cells - Number - Custom) as:

d "days" h "hrs" m "min"
[h] "hrs" m "min"

The 12/24 hour thing doesn't matter. It works either way. You can also
put the date and time into a single cell. Then just subtract receipt from
issue and format.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top