I want to select the particular name which was extracted from excel and select that name in dropdown

hello, I want select the particular name which was extracted from excel and select that name in dropdown. and we cannot type into assigned column…

i have done some part but not able to understand how to select the name(which is dynamic) from dropdown

You can try it with ‘Select Item’ activity, configure the selector at the drop down box and provide the dynamic value variable as the item.

my solution is not working could you please give me your solution

Please let me know if you’ve used the ‘Select Item’ activity to select the name in the drop down, if that does not work, you can try the solution the below thread:

Agree with @Muhammad_Nadeem_Abbas
Try:
1-Select Item activity
2-Check the post ‘Alternatives to select item & type into activities’
3-Check the following logic using For Each UiElement Error Dropdown - Help / Activities - UiPath Community Forum

1 Like

@HELZMOTH_BJ

First use get attribute on the dropdown and get all the items as an array

Then use the name from excel and match the values in array arry.First(function(x) x.ToLower.Contains(ValueFromExcel.ToLower))

The above expression will give you the matched item from array

Use the matched item in select item activity

Cheers

1 Like

Thank you, it worked

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.