**Finding the sum of multiple time intervals**

  • Thread starter Thread starter Soulja Boy
  • Start date Start date
S

Soulja Boy

I am making a schedule for my business and i need to figure out the total
amount in hours that each employee works. While I tried to do this I had
trouble entering the intervals (ie. 10am to 6 pm), and finding the sum of
them(ie. Monday to Friday)
-thankyou
 
In it's simplest form, start time in A2, end time in B2 use this formula in C2

=MOD(B2-A2,1)

then to calculate the sum for the week, assuming 7 days, use this formula in
C10

=SUM(C2:C8)

format C10 as [h]:mm, square brackets essential.....
 

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

Back
Top