I have a Status column and I want the Status column to be updated based on the updates on 2 different columns.
- If Resolution Date column has any value, mark status column as “Complete”
- If Due Date column date is today’s date or less and there’s nothing in the Resolution Date column, mark status column as “Delayed”
- If Due Date column today’s date or more and there’s nothing in the Resolution Date column, mark status as “On Track”
My formula is not working and coming up #UNPARSABLE
=IF([Resolution Date]@row = “”, "Complete", IF(DueDate@row < TODAY(), "Delayed", IF([DueDate]@row > TODAY(), "On Track", "”)))
Also, I tried using to workflow and it just didn't update properly as I needed it to. It was glitchy.
What am I doing incorrectly?