Excel not seeing a cell as blank because it has a formula

culle1bj

New Member
Joined
Mar 19, 2015
Messages
4
Hello,

I am trying to create a formula that will tell me if an item is late is there is no completion date entered and if the expected completion date is greater than today. The problem is that the actual completion date is pulling in a "" if there is no value entered on the next tab. That formula is below:

=IF(ACGF!S12=0,"",ACGF!S12)

So if there is no value in S12 on tab ACGF, it is entering "".

Now, when trying to determine if this is late or not, all the ""s are giving me issues. The formula I am trying to use is below:

=IF(completion date>0,"",IF(expected completion date>TODAY(),"LATE",""))

I can attach an example if necessary.

Thank you,
culle1bj
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Does this work?
=IF(AND(completion date="",expected completion date>TODAY()),"LATE","")
 
Upvote 0

Forum statistics

Threads
1,215,886
Messages
6,127,572
Members
449,385
Latest member
KMGLarson

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