Hello,
I need confirmation if the following evaluation will work as intended (I do not have the hardware with me to test).
If Boolean(1) OR Boolean(2) OR Boolean(3) OR Boolean(4) OR Boolean(5) OR Boolean(6) OR Boolean(7) OR Boolean(8) Then
Flag = True
Else
Flag = False
EndIf
I use
Flag = False
For I=1 to 8
If Boolean(I)then Flag=True
Next