So I'm trying to get the answers of "Late" or "On Time" based on if column [Late] says "Yes" in it, and the Column [Actual Date] is a date (any date will do, just as long as its a date). My formula below is just always giving me the response "On Time" regardless if either criteria I'm trying to check is correct.
=IF(AND([Late?]@row = "Yes", ISDATE([Actual Date]@row)), "Late", "On Time")
Also having an issue with this
=IFERROR(IF(AND([Target Date]@row < TODAY(), ISDATE[Actual Date]@row)), "Yes", "No"), "")
Getting an error on this one, so I think I am just using something incorrectly, but cant find it...