I am using the following formula for a completion status column. It is returning “done late” for completion dates equal to or after the start date and before or equal to the end date. it should be returning them as done on time. What am I missing here? #frustrated
IF({Completion Date} = “”, “Working”, IF({Completion Date} < {Timeline#start}, “ Done Early ”, IF(AND({Completion Date} >= {Timeline#start}, {Completion Date} <= {Timeline#end}), “Done on Time ”, IF({Completion Date} > {Timeline#end}, “Done Late ”, “”))))
The darn AI built this formula but it does not work.