Using 2 IF(AND( formulas and i'm getting the #INVALID DATA TYPE error. When Scope Approved and Scope Requested are both checked, it should return "Committed". If Scope Approved is unchecked but Scope Requested is checked, it should return "Identified'.
=IF(AND([Scope Approved]@row = 1, [Scope Requested]@row = 1, "Committed", ""), IF(AND([Scope Approved]@row = 0, [Scope Requested]@row = 1, "Identified", "")))
Appreciate any help!