Banged my head against this one for too long so thought I'd give in and post it. I'm trying to create a calculated column that evaluates two different conditions, as in:
IF
[Boolean A] = No
OR
[Boolean A] = Yes AND [Text B] is not null AND [Text C] is not null
THEN
return "READY"
ELSE
return "NOT READY"
Possible? Thanks in advance!