Project Completion Date & Time (No VBA)

andrew_milonavic

Board Regular
Joined
Nov 16, 2016
Messages
98
Hi Everyone,

How can I calculate the date/time a project will be completed based on a 30 hour project, 6am start, 8 hour shifts (assume breaks have been subtracted and will be working weekends)? The end date is easy but I cannot seem to get the end time right.

Example below

Any help would be great!

Thanks

Andrew


ABCDFG
Project Duration (Hours)​
Start Date​
Start Time​
Shift Duration (Hours)​
End Date​
End Time​
30​
1/21/2020​
6:00 AM​
8​
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
These two should work.

End Date: =B2+INT(A2/D2)-(INT(A2/D2)=(A2/D2))
End Time: =MOD(A2,D2)/24+C2+(D2/24*(MOD(A2,D2)=0))
 
Upvote 0
The only time it will look strange is if you have zero for the number of hours for project completion so you could put an IF in if that is required to test the A2 cell.
 
Upvote 0
Thanks Steve,

I added the If statement.

Follow up / Addition: If I wanted the next row down (next project) to start (time wise) when the first one ended, how could I do that while keeping to the same daily schedule? Changing the start time on the second project to be the end of the first obviously changes the hours per day etc and throws everything off.

Thoughts?

Thanks

Andrew
 
Upvote 0

Forum statistics

Threads
1,214,810
Messages
6,121,690
Members
449,048
Latest member
81jamesacct

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