Any help or suggestion with formula to that will be used to report activity as completed on time (on or before “Late Date”) based on the Date Completed. Everything is working correctly except when Late Date is in past and Date Completed is blank (because task is not complete). The logic is calculating as “On Time”. It should be Late.
I changed to formula below thinking that since Date Completed is Blank (therefore not greater than Late Date) it should report as Late.
Note the first IF statement is so that I do not report on future events and want the Completed on Time field to be blank until we hit reporting date.
Current:
=IF([Late Date]@row > TODAY(), "", IF([Date Completed]@row > [Late Date]@row, "Late", "On Time"))
Previous:
=IF([Late Date]@row > TODAY(), "", IF([Date Completed]@row <= [Late Date]@row, "On Time", "Late"))