Calculate hours of work substracting non-working time

R

robo

We have an application that gives us these fields in Excel. These are logged
jobs being performed for staff.

Start Date (date the job started)
StartTime
Returned Date (date job was completed)
Returned Time
Turnaround hours (total hours including non-working time)

If the job goes beyond the day it's started, I would like to create a
calculation to determine the numbers of hours a job took minus 16 hours of
non-working time for each day.

Thanks
 
J

JoeU2004

If the job goes beyond the day it's started, I would like to create a
calculation to determine the numbers of hours a job took minus 16
hours of non-working time for each day.

Try:

=A5-16*(A3-A1)

where A1 is the start date, A3 is the end date and A5 is the total hours.
That assumes that A5 is indeed hours, not the format hh:mm. If the latter,
then try:

=A5-16*(A3-A1)/24


----- original message -----
 
R

robo

Thanks for your help
Rob

JoeU2004 said:
Try:

=A5-16*(A3-A1)

where A1 is the start date, A3 is the end date and A5 is the total hours.
That assumes that A5 is indeed hours, not the format hh:mm. If the latter,
then try:

=A5-16*(A3-A1)/24


----- original message -----
 

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