Skipping several states based on if condition

Hi everyone,

Below you can see how my state machine bot looks like.
In State 4, I am creating a variable that counts certain entries in a table. If those entries are = 0, then the bot should skip states 5-11 and directly continue with state 12.

Could somenone kindly advise me on how to implement this?

Thank you in advance!

@Anonym

You can use Switch activity and using that you can place your conditions inside that

Hope this may help you

Thanks,
Srini

@Anonym

For particular state machines to skip you can keep IF condition(Flow Decision) and define in the same logic

Thanks,
Srini

Hi @Anonym ,

As it is a Flow chart setup, you can try using the Flow Decision activity :
image

@Anonym

In your statemachine transition condition use x=0 for the transition from state 4 to 12

For state 4 to 5 use condition as not x=0

Hope this helps

Cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.