This formula is placed in cell C3.
=IF(ISBLANK(H3),"",
IF(B3="Complete","",
IF(H3>TODAY(),IF(TODAY()+H3<>1,CONCATENATE("Due in ",TEXT(TODAY()+H3,"d")," days"),CONCATENATE("Due in ",TEXT(TODAY()+H3,"d")," day")),IF(H3=TODAY(),"Due Today","Overdue"))))
When the above formula is run and H3 is today or today-1, then the result in C3 is correct.
When H3 is today+1 for example, the result in C3 is "Due in 9 Days".
I cannot figure it out ?
Solved by B. U. in 16 mins