Hi,
I am new to uipath and want to implement below scenario.
I want to read data from around 30 cells on excel and then want to enter those fields on webpage.
Webpage is also having equivalent 30 fields
Can you please suggest best approach for that ?
Reading each excel cell and put details using type into is the only option ?
@Shashii
Use Excel application scope
Read range activity (store variable in type data table)
Use fo reach row (pass data table variable here)
Use get row item (it will give ur cell store in string variable )
Use type into activity (pass string variable here)
@Shashiihttps://login.oracle.com its not working for me attached zip file is for googe sign up page values are retrieved from excel and entered into sign up page check it
So if on same webpage… In case there are 30 fields… do we require same number of type into activities ?
Is there any way by using which just one type into for all the 5 fields ?
Just got some idea on reducing the number of Type Into activities and wanted to share here.
If all the fields are in same web-page, instead of using 30 type into activities try using hotkeys(tab, enter,…) row(0).ToString+ "[k(tab)]" +row(1).ToString+ "[k(tab)]"