I want to copy/paste cell by cell of an Excel into a textbox on a website.
You can access the textbox doing this: https://sisa.msal.gov.ar/sisa/#sisa > “Agenda Sanitaria REFES y REFEPS” > Click on REFEPS tab and there’s only one textbox.
Use excel application scope and read excel through read range activity.
This will give you excel data in for of a DataTable. Now use for each loop for data table and use Get Row Item give the index or column name to get the value or you can simply type row(“ColumnName”).ToString to get value.
Store this value in a variable, Use Open Browser activity to open the browser then use Type Into activity and hit enter to search or click search button.
This really helped me, I’m having a problem with the data type in Get Row item. It says “value of type ‘system.data.datatable’ cannot be converted to ‘system.data.datarow’”. I saved the excel range into a DataTable variable and that is what I’m giving to the Get Row item. Do you know how to solve this?
Thank you! I see one mistake where, you need to Pass the Row instead of DataTable in the Row section. (Please find screenshot below).
Also, you can do this in 2 ways… Either you can pass the row (index) or row(column name). either ways, you can achieve your result. I have modified your Xaml and attached the 2 options here. hope it helps. Let me know if you are looking out for this. MwzbTest.xaml (26.1 KB) MwzbSample.xlsx (9.5 KB)