I have a requirement to update the column of existing excel. I am able to copy the content of the excel in the data table and create a new excel using it as expected. But I am not able to update the column of the existing excel.
@chandravadanj Hi,
Use Read range activity to read the excel and set output datatable to a variable(DT).
then use foreach activity,
foreach row in DT
assign index= DT.rows.IndexOf(row)+2
Next use write cell activity and set the range as “K”+index.tostring.
(if you are trying to write into K column