Hi All, please could somebody help me with a "IF" / "OR" statement with two arguments, each argument with two conditions. Only one argument needs to be true to return a "1" or "Flag". Whenever I try include "OR" two separate the arguments, I get "Incorrect argument". At the moment, when one argument is true, the row "Un-Flags".
Current formula
=IF([Claim Submission Status]@row <> "Submitted", IF(TODAY() - [Date Claim Received]@row > 14, IF(TODAY() - [Repair Due Date (Rec + 2 days)]@row > 0, IF([Repair Status]@row = "Not Started", 1))))
Argument 1
IF([Claim Submission Status]@row <> "Submitted", IF(TODAY() - [Date Claim Received]@row > 14
Or
Argument 2
IF(TODAY() - [Repair Due Date (Rec + 2 days)]@row > 0, IF([Repair Status]@row = "Not Started"
Please could someone offer the correct formula to achieve this?