Excel Working Time Calculation

Soldato
Joined
14 Nov 2012
Posts
17,971
Location
Chesterfield
Not great with Excel, so I apologise.

This is the formula I'm using to calculate the working hours between a given start and finish time.

I need to adjust this deduct a 30 min break and my googlefoo has failed me :(

How would I amend it?

=SUM(C7-B7)

*C7 indicates the start time and B7 indicates the finish time leaving me with the total worked hours.
 
Last edited:
Create a cell with 0:30 in it. Then in your calculation do a minus then point to this cell for the half hour reduction.
 
I used the following:

Cell B2 has the start time in using 24 hour clock
Cell B3 has the finish time in using 24 hours clock
Cell B4 has the lunch duration in, in this case 30 mins is 0.5.

Formula used is:

=SUM(B3-B2)-B4

This seems to work as long as the hours are within the working day.

So, Start time of 9 and an end time of 17:00 minus 30 mins results in 7.5.
 
Last edited:
Back
Top Bottom