Formula including dates

R

R L Sandel

On an Excel spreadsheet, I have numerous columns with dates. How do I write
the formula so that if the dates in Column I OR Column L are before today's
date, it will default to "x" in column C? If the dates in BOTH columns are
after today's date, I want it to default to "a" in column C. Thanks in
advance.
 
J

JE McGimpsey

What if the dates are today's date?


If "a":

C1: =IF(AND(I1>=TODAY(),L1>=TODAY()),"a","x")

If "x":

change >= to >
 
Top