Hello,
I have one formula field {Ball 1 ?} in the table A . The formula checks another table {Ball 1} via a linked record to see if it contains an attachment. If it does, the computed field writes "Yes", if it is empty, it writes "No". This part works fine.
I have another field (checkbox) named {Balloon 1} in the table A, that I want to add to the logic.
But when I add {Balloon 1} to the condition:
Meaning : If {Ball 1} OR {Balloon 1} is true, then writes "Yes" in {Ball 1 ? } and "No" if it is false.
I receive an error and it doesn't accept the formula.
Here is how I wrote it in the formula field {Ball 1 ?} :
IF(
OR(
{Ball 1},{Balloon 1}
),
" Yes",
" No",
)
How can I fix it ? Any advice ?