How does a set of conditional targets behave?
When one condition is met - does the system stop processing the rest of the condition questions?
I want to build a conditional target as follows:
- if CurrentState = 1 do X1
- If CurrentState = 0 do X0
- If CurrentState is 2 or 3 the do XOther
Hers is what I did:

So based on this, will the third item be executed ONLY if current state is not 0 or 1?
Is there a better way of doing this?
Thanks,
Jack