I have 3 fields. 2 fields are checkboxes and 1 is text.
Active (checkbox)
Not Active (checkbox)
Complete (Yes/No)
I want to write a nested IF statement that if either are checked it provides a Yes / No response.
IF(ACTIVE = TRUE, "Yes", IF(OR(NOT ACTIVE = TRUE, "Yes", "No")))
I get the field to work how I want for Active but when the box is checked for Not Active I get an #Incorrect and if none are checked I get #incorrect.
Any help appreciated.