#Check if more than one of a set of conditions is true
1 messages · Page 1 of 1 (latest)
the quick and dirty way ... ( A and B) or (A and C) or (B and C )
or a logic where you count all conditions (one by one) . then check if counter >= 2.
you could template it with something like:
count = 0
output = false
if condition A then count = count + 1
if condition B then count = count + 1
if condition C then count = count + 1
if count >= 2 then output = true
return output
obviously need to write it actual template format but that maybe gives you the idea?