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.
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