if function formula on overdue date

erlindafb

New Member
Joined
Mar 9, 2021
Messages
3
Office Version
  1. 2010
Platform
  1. Windows
HI,

I got a worksheet of my receivable file, updating it monthly for management reporting, the formula should be

That if due date it will fall on the number of days it was overdue, but whenever it fall exactly on the date like zero days overdue, the amount is overdue but it falls the column of not yet overdue.

Please help me to correct the formula. I knew I'm missing something on the formula

thanks in advance : ) hava nice day!!!

1615314773245.png
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
do you need just a <=
IF ( B5 < = $L$1, ......
if just less than - if the dates are the same , then its NOT less then , so will be zero
 
Upvote 0
do you need just a <=
IF ( B5 < = $L$1, ......
if just less than - if the dates are the same , then its NOT less then , so will be zero
tried adding that but it did not work though...
 
Upvote 0
you would need to add the spreadsheet - WITHOUT sensitive data , on a share like onedrive or dropbox
OR use XL2BB - see the menu bar or my signature and post here

Its difficult to see from the image
 
Upvote 0
just drop the = sign on your second if...
Excel Formula:
=IF(B5<$L$1,  (IF(($L$1-B5)>K5, I5, 0)),0)
 
Upvote 0
Solution

Forum statistics

Threads
1,214,581
Messages
6,120,372
Members
448,957
Latest member
BatCoder

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