=IF(AND([% Complete]@row < 0, [Start date]@row < TODAY(), "Not started", IF(AND([% Complete]@row > 0, [Start date]@row > TODAY(), "In progress", IF(AND([% Complete]@row < 100, [End date]@row < TODAY(), "Overdue", "Complete"))))))
Hi - I've created this formula but getting the "INCORRECT ARGUMENT SET" error message. I think I've made a mistake in the brackets - ( ) etc.
For context, I'm using task completion percentages, task start/end dates, and today's date, to show me if tasks are Not started, In progress, Overdue or Complete.
Many thanks!