Hello.

Say here is a logical structure like this

IF A=1 AND B<6 OR A=2 THEN

The first part is clear, if a=1 and b is less than 6, then do something
but what about OR?
when I add that OR A=2 this means B still should be less than 6, or that part is ignored and only A=2 is checked?