How can i get text from excel and seach this text on a dropdown list (On adding this variable on the selector)
can you tell me more about your usecase
You can try with Read Range activity-> Create a variable for Output in properties
IF you want only one value then you can write as below
VariableName.Rows(RowNumber).Item(Header name).ToString
If you have list of values then use For Each Row activity which will loop into your excel values
Hope this helps you
Thanks