Logic IF AND OR
This task allows you to run 3 tasks A,B,C depending on the results of two IF conditions.
The flow diagram is:
IF ( Condition 1 Is True AND Condition 2
is True)
{ Run Task A}
else IF ( Condition 1 Is True OR
Condition 2 is True)
{ Run Task B}
else IF ( Condition 1 Is
False AND Condition 2 is False)
{ Run Task C}