Far below is a screemsjpt of how I track whether or not students have met compliance.
Currently, they all start out as non-compliant when we add them to the sheet.
Once the last 2 columns are checked, the overall status outputs "Compliant",
Now I have an extra condition to add (Student health colume) and I'm not quite sure how to update the formula.
Here is the current formula (The 2nd IF statement is contingent on the first):
=IF(OR([Flagged Designation]@row = "Revoked", [Flagged Designation]@row = "Deferred"), "Cancelled", IF(AND([Is ACEMAPP/ Complio Complete?]@row = 1, [AdvantageStudents Progress Status]@row = "✔ Background completed"), "Compliant", "Non-Compliant"))
I would like the results to be that if the last 2 columes (ACEMAPP and Advantage) are checked, the Overall Compliance Status output should be "Partially Compliant". If all 3 columes are checked, then the overall status output should be "Compliant".
Any help is greatly appreciated!