Hi everyone,
I’m trying to automatically change the Status to red once the deadline is reached.
I placed the following formula directly in the Status column:
=IF([Ende]@row <= TODAY(), "Red", [Status]@row )
However, I keep getting the error #CIRCULAR REFERENCE.
My understanding is that this happens because the formula is in the Status column and also refers to [Status]@row , but I’m not sure how to solve it properly.
Does anyone know how I can structure this so the status turns red when the deadline is reached, without causing a circular reference?
Thanks a lot for your help!