I have a column I recently created in a sheet to help our team know if they are missing information in a critical field before they move on to approvals (Critical Fields). I used an IF / OR statement to look at all of the critical fields and determine if any of them are empty. If one is empty then the field (checkbox) will be checked.
The formula works, but now I have another condition I need to work into the formula and I'm stuck.
This is my current formula (it's working), but I need to add the new condition:
=IF(OR(ISBLANK(Supplier@row), ISBLANK([Business Units Impacted]@row), ISBLANK([Estimated TOTAL Spend for Contract Term]@row), ISBLANK([Estimated ANNUAL Spend]@row), ISBLANK([Contractual Commitment Spend]@row), ISBLANK([Term Length]@row), ISBLANK([Commercial Summary for Approvals]@row), ISBLANK([Contractual Risks]@row), ISBLANK([Contractual Benefits]@row), ISBLANK([Payment Terms]@row), ISBLANK([Termination Rights]@row)), 1, 0)
I now need the formula to look at two things:
1) If the [Executed Short Form]@row is blank
AND
2) If any of the critical fields are blank
The result I am seeking: If both 1 and 2 are Yes then the checkbox should be checked. But, if the Executed Short Form field is checked then the [Critical Fields] box should not be checked. How should I write this formula? I am stumped trying to write an If / OR / AND statement and wondering if there is a better way to write this...