hi all,
how can i automate this process such that for inputs (memo line set, name, description, etc) will read from the excel starting at row 8 using different excel cells (A - memo line set, B - name, C - description, etc)?
hi all,
how can i automate this process such that for inputs (memo line set, name, description, etc) will read from the excel starting at row 8 using different excel cells (A - memo line set, B - name, C - description, etc)?
Hey @attkren1 ,
Hi @attkren1
CurrentRow(“Column Name in excel”).toString
Make sure you give the same column name as you have in excel.
5. If you have further process you can continue with that.
Hi @attkren1
→ Use the read range workbook activity to read the excel and store it into a datatable in this activity there is a option called Range in that give the range of you required you want it from 8th row right then give “A8:last cell value”.
→ Use application\browser activity to indicate the webpage that you want to enter the details.
→ Use for each row in datatable activity to iterate the datatable
→ Use type into activity to write the data in the datatable to webpage. (Currentrow(“Column name”).toString)
→ Use select item activity for dropdowns and give the same column value you want to select (Currentrow(“Column name”).toString)
→ If you want to click on okay or submit button use click activity.
You have to give the range here
Hope it helps!!
The column name should be “CurrentRow(“A”).ToString” for instance right?
Because i get “column ‘A’ does not belong to table DataTable?” error when trying out this method
The column name should be “CurrentRow(“A”).ToString” for instance right?
Because i get “column ‘A’ does not belong to table DataTable?” error when trying out this method.
this is my workflow
Do you have headers in your excel. If yes give the header name in place of A
Eg: CurrentRow(“memo line slot”).toString
Regards
In Read range give the range from where you want to read the excel.
Regards
yes i understand. i only need the string input on the excel but u indicated that if there is header, i should include the header as name. Does this means i have to include A7 (header name row) into the read range?
I am currently using A8:whatever i need.
@Parvathy
also, does jumping row by 2 (from 8 to 10 to 12 etc) affects the workflow?