hey guys,
I’m pretty new at UiPath,
I want my bot to copy a price of different websites to an excel sheet and sort them after hight. how can I do this?
hey guys,
I’m pretty new at UiPath,
I want my bot to copy a price of different websites to an excel sheet and sort them after hight. how can I do this?
Hi @newuserx,
Using get text activity to get the data from the different website, use write cell activity to store the value to excel sheet.
If you are going to extract multiple value at the same time build a data table and append it into excel sheet.
dt.DefaultView.Sort = "Price" dt = dt.DefaultView.ToTable()
Regards,
Arivu