Hello:
I have found this solution that is near what @DBO_DV explained. It would be included in OnSelect event:
Set(varContinue, true);
// first part of code;
// Verify condition and update variable
If(
Condition1=false && varContinue, Set(varContinue, false) && Notify("Condition1 not passed", NotificationType.Error) );
// Use variable to decide if continue executing
If(
varContinue,
// second part of code );
//REPEAT THE SAME PART WITH NEW PORTION OF CODE
// Verify condition and update variable
If(
Condition2=false && varContinue, Set(varContinue, false) && Notify("Condition2 not passed", NotificationType.Error) );
// Use variable to decide if continue executing
If( varContinue,
// third part of code );
//REPEAT THE SAME PART WITH NEW PORTION OF CODE
....
Thank you very much.