Hi,
I have a formula for which based on the timeline end date it sets if its overdue or on time based on today´s date.
IF(DAYS({Cronograma#End},TODAY())<0,“Overdue ”,IF(DAYS({Cronograma#End},TODAY())>=0,“On Time ”,“”))
However, this means that when a project is already completed, it will still show overdue since today has passed and is not programmed to be based on the status.
In parallel I have a second column which acts based on the Project Status “Completed”.
IF({Project Status}=“ Completed ”,IF(MULTIPLY(DAYS({F4 Date Done},TODAY()),-1)<0,“Late ”,“On Time ”))
What I want is to bundle these 2 formulas into one so:
If project Status is Completed: then see if it was done late or on time, but if project status <> completed, then see if we´re already “overdue” or still “on time”.
Is this possible? Thanks for your help!