Input respective data/cells from Excel to Web

I have successfully created a process where-in i got a data from Excel and input it into Web by using Read Cell, Type Into, Click etc. I have successfully done what i wanted to do for the first row. I need to repeat the same process over and over again for the second and succeeding rows and columns. Need help guys. Thank you.

hi
welcome to uipath community

hope these steps would hel you resolve this
–use a EXCEL APPLICATION SCOPE and pass the file path as input
–inside the scope use READ RANGE activity and get the output with a variable of type datatable named dt
–now use FOR EACH ROW activity and pass the variable dt as input
–inside the loop use OPEN BROWSER actiity and mention the uurl
–now use row(“yourcolumnname”).ToString in typeinto activity to pass the value of a column each row one by one till end

kindly try this and let know for any queries or clarification
Cheers @AlvinCondes

2 Likes

Thanks for the help

1 Like

Cheers @AlvinCondes