NETWORKDAYS overdue by days

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Evening everyone,

May I please ask for some help

I have the following formula that works out days between L14 (Delivery Date) and TODAY, but when the delivery date expires and runs over the formula shows "overdue"

I have modified it to show how many days over but it showsa negative value, can this be shown as a non-negative number (ie 6 instead of -6)

=IF(L14="","",IF(TODAY()=L14,"Due Today",IF(L14>TODAY(),"Due In "&NETWORKDAYS(TODAY(),L14-1)&" Working Day"&IF(L14-TODAY()>1,"s",""),IF(L14"Greater Thans Sign"TODAY(),"Overdue"&" By "&NETWORKDAYS(TODAY(),L14-1)&" Working Days"))))

many thanks
 
Last edited:

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".
Sorry just for clarity the formula was

Code:
=IF(L14="","",IF(TODAY()=L14,"Due Today",IF(L14>TODAY(),"Due In "&NETWORKDAYS(TODAY(),L14-1)&" Working Day"&IF(L14-TODAY()>1,"s",""),IF(L14 < TODAY(),"Overdue"&" By "&NETWORKDAYS(TODAY(),L14-1)&" Working Days"))))
Thanks
 
Upvote 0
Hi,

Add the ABS function to the formula:


Cell Formulas
RangeFormula
L12=IF(L14="","",IF(TODAY()=L14,"Due Today",IF(L14>TODAY(),"Due In "&NETWORKDAYS(TODAY(),L14-1)&" Working Day"&IF(L14-TODAY()>1,"s",""),IF(L14),"Overdue"&" By "&ABS(NETWORKDAYS(TODAY(),L14-1))&" Working Days"))))
 
Last edited:
Upvote 0
Hi jtakw,

Many thanks for the quick reply

So what is the ABS function may I ask?
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,272
Members
449,219
Latest member
daynle

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