I had heard that removing IF THEN ELSE from boolean formulas is more efficient. For example:
a = 1 AND b = 2
is better than:
IF a =1 THEN IF b =2 THEN TRUE ELSE FALSE
The reasoning I was given was that Anaplan will process conditions a and b in parallel for the first formula, but sequentially for the second. Is this true?