Struggling with the Date time difference not showing the correct status. The problem is the failing to return “Due Soon” instead of “Due Tomorrow”. Today, the date is 24 August, but projects marked with a 26 August deadline are showing as “Due Tomorrow” and I don’t know why…
IF(OR({Status}="To Do", {Status}="WIP"),
IF({Deadline}=BLANK(), "Not Due",
IF({Deadline}=TODAY(), "Due Today",
IF(DATETIME_DIFF(
TODAY(), {Deadline}, 'days') <= 1,
"Due Tomorrow",
IF(DATETIME_DIFF(
TODAY(), {Deadline}, 'days') > 1,
"Due Soon",
IF(IS_AFTER(
TODAY(), {Deadline}), "Overdue"))))),"-")