Hi, I'm having trouble nesting AND & OR statements with the ISBLANK condition in my IF statement.
I have two columns: [Agreed End Date] and [Actual End Date]
=IF(AND(NOT(ISBLANK([Actual End Date])), (OR(TODAY() - [Agreed End Date]@row < 1, "On Track", IF(TODAY() - [Agreed End Date]@row < 7, "Delay", IF(TODAY() - [Agreed End Date]@row > 7, "Overdue", "Error")))
I tried to split it into multiple IF statements rather than having the OR in place but it did not work neither. For example:
=IF(AND(TODAY() - [Agreed End Date]@row > 7, ISBLANK([Actual End Date]@row), "overdue", ""))
The above returns an "invalid argument set"