I am trying to do different comparisons based on different conditions. Below is the basic logic.
IF SO Status = Open
Compare Due Date to TODAY's Date
If Due Date > TODAY's Date, Delivery Status = Past Due Else
Delivery Status = On-Time
IF SO Status = Closed
Compare Ship Date to Due Date
If Ship Date > Due Date, Delivery Status = Past Due Else
Delivery Status = On-Time
Below is the formula that is coming back with an Unparseable error:
=IF(AND([SO Status]@row = "Open", [Due Date]@row > TODAY()), "Past Due", "On-Time"), IF(AND([SO Status]@row = "Closed", [Ship Date] > [Due Date]@row, "Past Due", "On Time))
Any help is much appreciated! Thanks.