Hi,
i've a simple question:
Is it possible to make an or Condition in C2?
When a variable has the values 0,1,2 and I want a condition like that:
if (variable= 1 or variable =2) --> Actions
What i usually then do is to invert the condition:
if not (variable = 0) -> Actions
Is there a way to make this with or?
Thanks,
Joe7