Only perform an if statement if the contains a date and ignore other data

Engineerlee

New Member
Joined
Nov 30, 2012
Messages
26
Hi,

I have a cell A1
this contains a formula to pull a date from another worksheet using an Index and Match Formula

In Cell A2 I want to perform a check to see if that date is greater than or less than today.
The problem I have is that my formula in Cell A2 is seeing the formula in A1 and always returns a value even if no date is displayed.

This is my formula in A2
<today(),"overdue","not due")<today(),"overdue","not="" due")
<today(),"overdue","not due")
<today(),"overdue","not due")="" "
IF(K25<TODAY(),"OVERDUE","NOT DUE")<today(),"overdue","not due")
<today(),"overdue","not due")


Any advice.</today(),"overdue","not></today(),"overdue","not></today(),"overdue","not></today(),"overdue","not></today(),"overdue","not>
 
Last edited:
If you change the value in F25, does the date change?
 
Upvote 0

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
The custom format doesn't change what's in the cell, only how it's presented. Your A1 formula returns a "" if the MATCH fails, so the formula from post 9 should work.

Another possibility is that the MATCH finds something in D:D, but the corresponding cell in Q:Q has some text or a negative number. Your custom format would hide those. To check that out, find an empty cell somewhere, with no custom formatting, and enter
=A1
If it shows something, then you need to check your data on the 1.1 Centre sheet.
 
Upvote 0
Hi Fluff,

If I change it to look up another value and that reference finds a date then yes

The formula returns 00/01/1900 into A1 as the reference in F25 has nothing in '1.1 Centre '!$Q:$Q,MATCH
so to stop this value I added the cell formatting
 
Upvote 0
Hi Eric,

I may have part answered your point when responding to Fluff.

So the detail in F25 does match an entry in D:D
However in some cases there isnt a value in Q:Q

If thee isnt a value in Q:Q I get 00/01/1900 returned. To stop this I formatted the cell dd/mm/yyy;;

so I think my problem is the returning of the default value 00/01/1900 which I am hiding but the formula
=IF(A1="","",IF(A1 < TODAY(),"OVERDUE","NOT DUE"))
still acknowledges this and therefore I always get Overdue returned.

If this is the case, how do I stop the 00/01/1900 being returned to cell A1

Cheers
 
Upvote 0
How about
=IF(OR(A1="",A1=0),"",IF(A1 < TODAY(),"OVERDUE","NOT DUE"))
 
Upvote 0
Fluff,

=IF(OR(A1="",A1=0),"",IF(A1 < TODAY(),"OVERDUE","NOT DUE"))

This works perfectly.

Thanks to you and Eric for your help on this matter and providing the solution
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,235
Messages
6,129,650
Members
449,524
Latest member
RAmraj R

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