On-Time calculations - using only workdays?

AndySc

New Member
Joined
Apr 1, 2019
Messages
2
All, I need to calculate whether a production item is On-Time (early or on-time), or Late, using workdays only to calc. I also want to be able to get a summary or total by month or similar. I have the following set up already:
Deadline Date
Actual Production Date
If Actual is earlier or same as Deadline, then Y. If later, then N.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
=if( Deadline date cell > = actual production date , "Y" , "N" )

not sure about getting a summary , as dont know how the data is structured and also not sure exactly what you want

But you could I assume count the "Y" by month using perhaps a =COUNTIFS()
 
Upvote 0
etaf,

Thanks for the reply. I have two scenarios that remain issues. If I put SR(text shorthand for Stock Replenish) into Deadline Date cell, it shows as Y even before I load an Actual Date. Also, if I leave the Actual Date cell blank, it also shows Y.
Any way around he issues?

Andy
 
Upvote 0
why are you putting text into a date cell?

the blank actual date is seen as zero
so we could add
AND ( actual production date < > "" , Deadline date cell > = actual production date )

=if( AND ( actual production date < > "" , Deadline date cell > = actual production date ) , "Y" , "N" )

now there has to be a value in actual production date

can you explain further
if I put SR(text shorthand for Stock Replenish) into Deadline Date cell, it shows as Y even before I load an Actual Date.


 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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