I have a switch statement where let's say %NewVar% = 1, Case compares if %NewVar%= 2, it does not, so under the Default Case there is an action for Go To Label, which will move to a label outside of the switch statement.
That Go To action stops the process from running if it tries execute, but only if it is under the default case.
If the Case were to compare %NewVar% = 1 (so, true) and the same go to label action is used, it successfully exits the switch and goes to the label.
Is this intended?