I am using the following formula with some nested IF. The last entry “ON TIME” results in een 0 instead of ON TIME. What am I missing here?
IF(
{Target Date}=“”, “NO TARGET DATE”,
IF(
{Status}=“CLOSED”, “CLOSED”,
IF(
{Target Date} < FORMAT_DATE(TODAY()),WORKDAYS(TODAY(), {Target Date})
,“ON TIME”
)))