I have a checkbox I need to tick if a cell says ETM Contract Signed and/or Direct Contract Signed, or if the number of contracts is 0.
The below formula works when the column has either one of the two signed contracts but not when both are present. How can I re-work it?
=IF(OR([French Contract Status]@row = "ETM Contract Signed", OR([French Contract Status]@row = "Direct Contract Signed")), 1, IF([# ETM & Direct (FR) Contracts]@row = 0, 1))