Time difference between start and end date and time

AG134

New Member
Joined
May 29, 2017
Messages
2
Hello everyone,

Question with how to successfully create a cell that is calculating the time difference between two cells that are using a format of month/day/year hh:mm:ss and identifying the difference solely in a hh:mm:ss format,

Start of projectEnd of projectTime difference
month/day/year hours:minutes:secondsmonth/day/year hours:minutes:secondshours:minutes:seconds

<tbody>
</tbody>

I've tried a simple cell of start - cell of end formula however that doesn't create anything of value and results in a cell of #############,

I believe it's primarily a formatting issue, but I'm not having much luck with this at the moment,
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Format the cell with the result as [h]:mm:ss.

PS Also, shouldn't it be end cell - start cell?
 
Last edited:
Upvote 0
Format the cell with the result as [h]:mm:ss.

PS Also, shouldn't it be end cell - start cell?

Hello,

You're absolutely correct, I had a typo in there, your code also works well! But I have bumped into another problem,

From that time difference column I'm breaking it into 3 segments, completion time of less than 8 hours, 8 - 16 hours and 16+,

I have the following 3 codes; column J holds the completion time got by subtracting the end vs. the start

=IF($J5 < "8:00:00",1,0)

=IF($J5>="08:00:00",IF($J5<"16:00:00",1,0),0)

=IF($J5 >= "16:00:00",1,0)

I think the reason this code is not working is due to the change in formatting style of [h]:mm:ss

All entries are recognized as <8 hours though this is not the case
 
Upvote 0
Or it could be because "8:00:00" and "16:00:00" aren't time values.

Try using either TIMESERIAL(8,0,0) and TIMESERIAL(16,0,0) or TIMEVALUE("08:00:00") and TIMEVALUE("16:00:00").

Altertanively you could put 08:00 and 16:00 in cells and reference those cells in the formula.
 
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,849
Members
449,051
Latest member
excelquestion515

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