I have attached an excel file. In this excel file suppose I have stored “Ramesh” under column name “Name”.
My question is how to fetch “Ruskin” under column name “Name” and “Manager” under column name “Designation” using database and uipath connection or any other logic.
The logic should be dynamic since the stored value (“Ramesh”) can change .
Whether it is a database or excel, however it is the final variable is going to be a DATATABLE
When you know a value in one column of that datatable and if you want to get the corresponding value in another column then we can use LOOKUP DATATABLE activity
Have a view on this doc on how to use that activity
You need to get the Designation of the row matched with the Name column or the Designation of the next row after finding the matched row with Name column.