I have a column in Excel that contains a list of dates, say for example
02/09/13
and then in another column I have a formula to detect whether or not the date is 6 months older than today, and if it is, it should display "True" in this column:
02/09/13 True
my formula so far is
=DATEDIF(E17,TODAY(),"m")>=6
My question is if the column that contains the dates contains certain text, for example:
| 02/09/13 | True |
| No date present | |
How would I get the "true/false" column to detect this text and print it instead of true or false?
I have tried numerous different formulas with ORs/ANDs, nested IFs and multiple IFs, etc.
=IF(E17,TODAY(),"m")>=6, IF(E17 = "NO DATE PRESENT", "NO DATE PRESENT")
=DATEDIF(E17,TODAY(),"m")>=6, OR(E17 = "NO DATE PRESENT", "NO DATE PRESENT")