Paola58
(Concetta Sorropago)
1
Hi,
I need to create a decision table like:
if a=0 and b>1 do Sequence1,
if a>0 and b>1 do Sequence2,
if a>0 and b=1 do Sequence3,
if … do
It could be done using Data table and Excel to compute the condition but I’d like to know if there is a simpler way. May you help me?
Thanks in advance!
1 Like
Yan_Boos
(Yan Boos)
2
@Paola58
You could use the Pick and Pick Branch activity for this kind of scenario.
Regards
1 Like
@Paola58
I think you can also try using the Switch or Flow Switch activities
Regards:fox_face:
3 Likes
Paola58
(Concetta Sorropago)
4
Thanks! But I can’t understand how to set the trigger!
1 Like
Yan_Boos
(Yan Boos)
5
@Paola58
I did some test here to check if I could do something that could solve your problem and realized that @Christopher_Gomez option is more viable to you.
The pick activity would be better in an environment with buttons and images, not numbers.
Sorry!
1 Like
amaresan
(Amaran)
6
Use state machine it will help u
1 Like
Paola58
(Concetta Sorropago)
7
Hi,
eventually I found an effective way to switch based on string variables: flow switch.
https://activities.uipath.com/docs/flow-switch.
Using simple Vb if statement and flow switch one could invoke different workflow.
Hope this will help.
1 Like
Hello,
For anyone reading this topic, I thin the activity Else If could be useful for the case planted here