I am trying to generate a formula where:
1. If date in field x is greater than 1953, then 1 is put in field z
OR
2. If checkbox is checked in field y, then 1 is put in field z
I came up with this formula
IF(OR({NO DIGITAL} = 0), ({CODE-DATE} > 1953), "1")
However, this is producing a statement that reads 'true' if {CODE-DATE} > 1953, and '1' if {NO DIGITAL} = 0 (that is to say, box in {NO DIGITAL} is checked)
Any idea why this is happening or how to get the results I want?