I am working on formulas to get approvals in one of my sheets - But there are more than 2 options and I'm finding it a bit confusing…
- IF both directors APPROVE = Trade Off Accepted
- IF one director APPROVES and the other one is PENDING = Pending Acceptance (Would I need two of these?)
- IF both directors REJECT = Trade Off Rejected
So far I have this:
=IF(AND([Product Director Decision]@row = "Approved", [Technology Director Decision]@row = "Approved"), "Trade Off Accepted", "?")