Overdue calculation.

lauraem

New Member
Joined
Apr 17, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
Hello All,

I am trying to come up with a formula to calculate the days overdue since the target completion date.

Date raised and target completion have a formula for 30 days.


The red line is row 5.
1713344386108.png


Any help will be much appreciated.
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Have you tried a simple subtraction formula? =A4-A3. It will give you an answer of 12.

Try this formula to say how many days overdue or if the project was delivered on time:
IF(B13-C13<0,"" & B13-C13 & " days overdue","Project done on time")
 

Attachments

  • Screenshot 2024-04-17 191143.png
    Screenshot 2024-04-17 191143.png
    8.7 KB · Views: 1
Upvote 0
Hi & welcome to MrExcel.
If you only want to account for working days, maybe
Excel Formula:
=NETWORKDAYS(W5,X5)
 
Upvote 0
Hi & welcome to MrExcel.
If you only want to account for working days, maybe
Excel Formula:
=NETWORKDAYS(W5,X5)

Thank you that has worked!

The only issue now is the ones that aren't complete....is there anyway that they can count to the day? Or something?
1713356194574.png
 
Upvote 0
How about
Excel Formula:
=NETWORKDAYS(W5,if(X5<>"",X5,today()))
 
Upvote 0
Solution
Glad we could help & thanks for the feedback.
 
Upvote 0
Glad we could help & thanks for the feedback.
Apologies, one more question....as I've used network days my trending and time that I am allowing for target completion is wrong.

Is there a way that my +30 days for target completion can be network days also?


1713361142707.png
 
Upvote 0
You would need to use WORKDAY for that.
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,680
Members
449,116
Latest member
HypnoFant

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