I come with a question regarding New UiPath Apps framework (I’m currently migrating ALL):
I have several dropboxes that shows me different lists depending on the selected value.
In Legacy, I managed to show each list by a nested if like
I want to simplify and, since we can use VB expressions, I wonder… How can we use a Switch, a Select Case?
I’ve tried with VB but It is not recognized:
@Arvind_Kumar1 Did you find any situation like this one? Any feedbak will be more than welcome
Thanks in advance family,
HUG!
Yes, I have actually several ones so, depending on the Category, I want to show the selected list, let me picture an example:
I have 2 dropdowns, first for categories and second for selected category items:
List of categories
List_Categories: {“Phone”, “Car”}
For each category, I have several items
List_Phone: {“Samsung”, “Google”}
List_Car: {“Ford”, “Opel”}
So, I have a drop-down showing the list of categories. Then, depending on what I select in the first one, I show the selected category items. In this case, if I select “Phone”, second drop-down should show “Samsung”, “Google”