what about the following example?
if you want to find each row, put that application scope within a for each row activity and pass the currentRow value to the lookup range activity
Use the Read Range activity to read the data from the Excel file and store it in a data table variable called ‘dataTable’.
Use a For Each Row activity to iterate through each row of the data table.
Inside the For Each Row activity, use an If activity to check if the value in the ‘Name’ column matches the desired value. For example, you can use the following condition:row("Name").ToString = "AX03"This will check if the value in the ‘Name’ column of the current row is equal to “AX03”.
If the condition is true, use the Write Cell activity to update the corresponding cell in the ‘Code’ column. You can use the following expression to get the address of the cell:"B" + (row.Table.Rows.IndexOf(row) + 2).ToString()This will get the index of the current row in the data table, add 2 to it (to account for the header row), and concatenate it with the column letter “B” to get the address of the cell in the ‘Code’ column.You can then set the value of the cell to the desired value (e.g. “B2”).