Hello all, I'm trying to create a formula that will check the target date against the date completed, and return "Late" if it's late and "On Time" if its not. This formula works as intended except that it lists all blanks as "Late". I have limited experience with formulas, and only the simpler ones.
=IF(AND(ISBLANK([End Date]@row) <> "", [Target Date]@row < TODAY()), "Late", IF([End Date]@row > [Target Date]@row, "Late", IF([End Date]@row <= [Target Date]@row, "On Time")))
I found another formula that properly omitted the blanks, but it wasn't reading the dates correctly and I'm not sure how to make the above formula stop returning "Late" for blanks. The above formula properly reacts to the date, but it counts all blanks.
Any help would be appreciated, and my apologies for having to Frankenstein my way through these formulas.