Looping on URLs from Excel file using UiPath

Patnaik14

Member
Hi,

Using UiPath, how to open all the URL under a column in excel sheet?
I am quite new to UiPath, so please explain it step by step.

Thank you.
 

bnastase

Member
Hi,

You will need to firstly read that excel file in a Data Table variable with a Read Range activity, then you will need to use a For Each Row activity, and put in the name of you Data Table. After this you will have to put inside the for each an Open Browser activity in which you will put inside the URL parameter the following syntax: row("your column name here").To String.

Here are a few things about the for each https://activities.uipath.com/docs/for-each-row

I recommend you going through the online training, it's free of charge and you will learn loads from there https://academy.uipath.com

Bobby
 
Top