0071: Incorrect number of conditions
A conditional statement exceeds the number of conditions allowed per one statement. The maximum number of conditions combined with the AND
or OR
operation is 9
.
Possible solutions: split the conditional statement so that no statement has more than 9 conditions.
Transforming conditional statements while preserving the logical relation between conditions can be achieved by extracting the conditions into a separate subroutine as demonstrated below.
AND
:
OR
:
Last updated