How to execute workflows in order depending on user output

Hi

I want to execute workflows depending on an user output. The user can select multiple workflow up to three (workflow 1,2, and 3)
The three workflows should be executed in order: 1, 2 and 3.

If user select 1, execute only 1.
If user select 1 and 2, execute 1 then 2.
If user select 1, 2, and 3, execute 1, 2 then 3.
if user selects only 2, execute only 2.
if user selects 2 and 3, execute 2 then 3.
and so on.

How do I achieve to execute workflow in order??

Thank you,

@yesterday

Trigger all the workflows from a main workflow and then add if conditions to check the user input…str.Contains(“2”) then on the then side add second workflow similarly for other flows

You can get the input for unattended bot from adding arguments to the entry workflow…

for attended you can use Input dialog box and ask for input and then your if conditions will take care of the rest

Hope this helps

cheers

Hi @Anil_G

Thank you for your answer.

I used Flowchart and flow decision to check if str.Contains(“2”) and it worked.

thank you

1 Like

@yesterday

Happy Automation…

Please close with marking solution…so that others also can get help

Cheers

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