Looking for some support. I have an excel file with certain keywords and their corresponding URL’s in adjacent cells. I wish to build a bot such that when I type the keyword in Uipath then the corresponding URL opens up. For example in cell A1 I have the keyword “Medicaid”, now i type “Medicaid” then the path opens chrome and goes to the URL in cell B1 which is “Mediaid.gov”. if anyone has already built something similar, let me know.
You could try the following:
Use a ‘read range’ activity, inside an excel scope.
Use a Dialog Input to get data from the user
Use a ‘Filter Data Table’ Activity to filter the records, using as a parameter the typed value.
Use the URL to open a browser.
I will prepare something for you and send you shortly
That was a good approach to work on, however we can save this mapping in dictionary and based on user input, it will be picked up from config file.
For ex.
Read this excel.
Put mapping data in dictionary as key value pair.
Take user input.
use config(userInput) and it will give corresponding URL.