I am trying to fix a formula for hours, but I can't find the error. For some reason, the last argument in an OR Formula is ignored.
The base has 2 tables (Table 1 and Table 2)
Table 1 has one record with the following values:
Field 1 (single line text) = A
Field 2 (single line text) = B
Field 3 (single line text) = C
Table 2 also has one record with a multi-select field. The values are
Field 1 = C, D, E, F
My OR formula should check if any of the 3 values from the record (Table 1) is included in the multi-select field (array) of the record in Table 2.
OR(
FIND(Field 1 (Table 1), Field 1 (Table 2)),
FIND(Field 2 (Table 1), Field 1 (Table 2)),
FIND(Field 3 (Table 1), Field 1 (Table 2))
)
When I add "C" to Field 2 (Table 1), then it's correctly counted.
If I add C in Field 3 (Table 1) I don't get an error, and the formula just goes through. It just ignores the last argument, "FIND(Field 3 (Table 1), Field 1 (Table 2))".
Does anyone have an idea how to solve this?