Hi @archana.yamijala
So when u are datascraping when u are scrapping the invoice number, there is an option to scrap the url too associated with it (this is url to which u will be guided once you click on invoice number manually)
so your datatable has 2 columns mainly:
Invoice Number---------------- URL
So when u find that Invoice number is existing in the datatable using lookup datatable activvity then using the rowindex u got output from lookup datatable activivty u can get the corresponding url
For eg :
Invoice Number--------URL
1234569 -------- https://google.com
4635465165 -------- uipath.com
So u are searching for Invoice No 1234569, using lookup datatable activvity once lookup datatable find that 1234569 is in the datatable then it will output eithrt the rowindex or the cell value value ( target value u need). Here i am rowindex directly to get the url
so u got rowindex as 0 for row which contains Invoice Number 123469
So to get the url u can use the following dt.Rows(rowindex)(“URL”)
This url u can use naviage stage to navigate to the url and do the required operation
Regards
Nived N
Happy Automation