Days Past Due remain blank

krisking64

New Member
Joined
Nov 29, 2016
Messages
3
I'm hoping you can help.

PO Date is F2, Due Date is G2, and Received Date is I2.

I currenty have =IF(ISBLANK(I2),TODAY()-G2,I2-G2) as my formula in H2 so it will stop counting once I enter a received date. However, I do not want to a negative number in H2 if the due date has not arrived yet. I had =IF(DAYS360(G2,TODAY())<1,"",DAYS360(G2,TODAY())) in H2. This formula would leave a blank in H2 if the due date had not been met but it would not stop counting.

What is the best way to resolve this issue?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
krisking64, Good afternoon.

Try to use:

=IF(G2="", "", IF(ISBLANK(I2), TODAY()-G2, I2-G2))

Is that what you want?
I hope it helps.
 
Upvote 0
Thank you for your help.

The formula you provided did not make a difference. I still have a negative number in H2.
 
Upvote 0
I found the issue,

the follow should read as follows:

=IF(I2="", "", IF(ISBLANK(I2), TODAY()-G2, I2-G2))
 
Upvote 0

Forum statistics

Threads
1,214,883
Messages
6,122,077
Members
449,064
Latest member
MattDRT

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