So I have an issue. I would like to browse my datatable (from an excel sheet) and within a ‘For Each Row’ Activity to analyze the row and modify several of its columns accordingly, and that this appears directly within the Excel Sheet at that moment.
I thought it was possible to do it without the Write Range Activity, by only modifying the DataRow, isn’t it?
Currently my solution is the following but was wondering of a more optimal way to do it:
@Micksme,You can also read the excel using Read Range Activity and output to datatable
Then modify data in For each row loop (datatable) finally write to excel using write range
Maybe it was not well mentioned but this is currently what I am doing but I would like to avoid doing the write range, just modify the DataRow itself (which directly modifies the Excel Sheet) but I guess it is not possible (I thought I could do it in one of my projects but have some issues to make it run now).
yea, always try to go write range instead of write cell. if you are looping it ll take too much time to execute.
so for better performance go to write range activity.