I want loop through 3rd Row to End
I wrote this expression Excel.Sheet(“Sheet2”).Cell(“A3:A89”) but the loop is running only A3. Each time it bot is taking A3 cell, it is not incrementing. Please suggest me what is the correct expression to loop through all the rows from 3rd row
I want use this expression into “Type Into” Activity where I have to enter from Row 3 to the rest of rows till end. And instead of Cell, I tried Range and not working.
Add a Read Range activity inside the Excel Application Scope to read the data from the desired sheet. Store the output in a DataTable variable, let’s call it excelData.
Add a For Each Row activity to iterate through each row in the excelData DataTable.
Set the range in the Read Range activity to "A3:Z" or any other range that covers all the columns you need. This will ensure that all columns are read, and you can access them in the For Each Row loop.