Write Data into excel using iterate value

How to write iterated data into column-wise into excel…

Hi @Arun_Pondhe
Use Build datatable activity
use for each row in Dt
add data row {}
use output datatable
use write range

Thanks
Ashwin S

You can do that as @Arun_Pondhe

  1. Create a integer value and assign it with 1 assuming as count
  2. While iterating the data, use write cell activity and give the range as “A” + count.tostring
  3. Increment the value as count = count + 1 using assign activity