Is there any suggestion on how to delete header from DataTable?
I tried to use Remove Data Row activity with 0 in RowIndex, but it doesn’t work.
Try this expression
Use Assign activity
Dt.Remove(0, Dt.IndexOf(Environment.NewLine)+2)
Regards
Gokul
Hi Olivera
Just put an Assign activity with the output variable from Output DataTable like this: MyDataTableText = MyDataTableText.Remove(0, MyDataTableText.IndexOf(Environment.NewLine)+2)
Have a nice day