I have workflow that will write a DataTable into a excel starting from Row 4…
So I’m doing,
For each CurrentRow in MyDataSet
WriteInto “A4” >> ColumnData1.toString() …
Its working fine until when the dataset is larger than the rows visible in my Excel. When column A4 is no longer in view, the WriteInto is stuck as well.
Anyone has workaround or solution on this please ?
There is no need of For each loop you just need to use write range activity and pass “A4” in range
It will write the whole data in your excel file and its the quickest one.