I have about 15 000 data rows and I am using the for each Activity and a Counter but it is taking an average of 5 seconds to write to each cell. Is there a faster way to do this because it might take hours to write to all the cells in the column.
As You want For A Column thats why i used Row(0)
Indexing is start from 0th
so A column will be 0th
So if u want to write it in B column then use Row(1)
Thank you, it works but still takes qiute a bit of time. It took 20 minutes to write to 15 500 data rows. But its definitely better than it was before.