Hi -
Below is my current formula that i am receiving an #INCORRECT ARGUMENT SET error on, and here is what i'm trying to obtain:
If Scope Request is checked AND Scope Approved is checked, then "Committed" , if Scope Request is checked and Scope Approved is unchecked, "Identified" , if neither Scope Request nor Scope Approved is checked then "Unidentified"
=IF(AND([Scope Requested]@row = 1, [Scope Approved]@row = 0, "Identified", IF(AND([Scope Approved]@row = 1, [Scope Requested]@row = 1, "Committed", "Unidentified"))))