Hi,
I have to copy the 1st row from a excel file and put it in the last row. How do I proceed here.
I tried fetching that row and then using add data row but I get error that the row already exists.
Hi,
I have to copy the 1st row from a excel file and put it in the last row. How do I proceed here.
I tried fetching that row and then using add data row but I get error that the row already exists.
Hi @Manjuts90 ,
Output of read row is only IEnumerable and not data row. So I am unable to use this to the data table.
How do we use this read row activity
Check below attached xaml,It may help you.
let me know if you have any other issues related to this.
empty.xaml (5.6 KB)
@Manjuts90 Convert enumberable to array like below in Array row property of add datarow activity
urenumerablevariable.ToArray
@Manjuts90 Thanks. It’s done…
@abhyudai_munna Thanks a lot! This also worked for me.