lkndllsgrl

New Member
Joined
Feb 7, 2013
Messages
21
I have a sheet that I am trying to calculate days past due.

I=Date Due
J=Days Past Due
K = Date Implemented

I want to calculate the days past due, stopping counting once the date implemented is entered and I need to ignore blank cells. I have a formula that works to stop counting after the date implemented is entered, however it will not ignore blanks. If someone could help me modify the formula to ignore blank cells I would be forever greatful!

=IF(K3="",TODAY()-I3,K3-I3).

This formula ignores when there is no date in K, but returns a funky number if there is no date in I. How can I get it to not calculate if there is nothing input into I?
 
Last edited:

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Does this do what you want?
Code:
=IF(OR(I3="",I3>=TODAY(),K3<>""),"",IF(K3="",TODAY()-I3,K3-I3))
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,542
Members
449,316
Latest member
sravya

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