The bot will take input row from Excel one by one and the input the goes to my working application form. How do I make the bot looping and stop when there is no more row inside the excel.
I am currently using Read Cell in excel and read one row at a time but that process is manually. Like “Sheet1” “A1”. So if I have 30 rows, I need to do 30 read cell manually.
Instead of read cell use read range so that complete excel will be read and stored as data table.
Now use for each row ans specify the datatable as input this will loop through all the rows in excel.
Even sheet name can also be auto fetched using Get work book sheet if index is known, else use Get workbook sheets to get all the sheet names.