@ajeffers
Find this demo game here:
ajeffers.xaml (11.3 KB)
- opens a page with a states dropdown
- find children to all state names
- display an input with select list which has all state names in upper case
- searches for the user input in the childrenlist (Outcome from find children) for the selected state
- here it cannot search directly for upper case name and has to bring the state name to upper case for the compair
- found single children’s text info is used for select item
so instead of upper case you can implement as startswith or contains method for the compair
Kindly note: this was a fast prototype so some linq statement are in use. But these statements cann still be rewirtten to essential uipath activities like for each, if e.g. implementing the filtering
Let us know your feedback