Reputation: 1233
I'm just curious about switch/case in UiPath. Everywhere else in UiPath, strings must have double quotes or stored in variables, however in switch/case, it seems different.
Every "case" is interpreted as string, regardles of the quotes. How to use variables in there when they're interpreted as string?
Upvotes: 0
Views: 1680
Reputation: 44
You cant use variable in switch case in UiPath. However you can use following expression in Expression property helps switch dynamically.
Array.IndexOf({var1,var2,var3},item.ToString)
Something like below screenshot
Hope this helps
Upvotes: 1