I have two formula fields that checks the fields “Status” and “End Dates”. This formula works fine:
IF(AND(Status <> “DONE”, End Date < TODAY()), “Yes”)
This one does not:
IF(AND(Status = “DONE” ,End Date < TODAY()), “Yes”)
The problem seems to be that the field changes to boolean while using the “=” operator. And I’m not allowed to change the field type (field is greyed out).