I am trying to build a formula that will look at a cell date and then mark "true" (in helper column) if it is less than "TODAY". I need this formula to ignore blank cells in date column.
I have tried this one, with no luck.
=IFERROR(IF(ISBLANK([Smart Status Change Date]@row), "Blank", IF(AND(ISDATE([Smart Status Change Date]@row), TODAY() > [Smart Status Change Date]@row), "Late"))), "")
I get this one to work showing if a cell is blank but need to compare date now.
=IF(ISBLANK([Smart Status Change Date]@row), 1, 0)
IDEALLY, I would like the formula to tell me if my column cell date is less than a cell date in another column but I would settle to using "TODAY" if need be.