Hi all,
I am trying to create a formula that adds a check to a checkbox once a check has been added to 5 other checkbox fields in the same row. The other checkboxes are also automated and are checked based on other criteria (however, I don't think that matters here). Below is what I have so far, basically if ALL of these fields are checked I want a check, if ANY of the 5 checkboxes are not checked, I want it left unchecked:
=IF([Tech Complete]@row, "Complete", AND([Finance Complete]@row, "Complete", AND([Ops Complete]@row, "Complete", AND([QA Complete]@row "Complete" , AND([Training Complete]@row, "Complete", 1, 0)))))
Any help is appreciated!
Thanks,
Andrea