I have a search field, that be use for find a some registers (the registers can be 1 or many others).
I need search the register and, after found it, I need change the value corresponding at the filed.
But, sometimes, I’ll need change the field of register 3, for example.
I thought in use the FIND TEXT to search number of register on the listed rows, but after found it, how that I can change the information “ab3” corresponding to line 3?
@arthurfsantos11 - Assuming you are using an Excel workbook, you can use “Read Cell” and “Write Cell” activities to do this activity. You can also read the complete Excel worksheet into a datatable, modify the data in the datatable and write the modified data back to Excel worksheet.
@arthurfsantos11 - You should be able to store the search results in a “Datatable” object and then loop through each row and then update the cell based on the register value.