Remove header from data table

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.

HI @Olivera_Kalinic

Try this expression

Use Assign activity

Dt.Remove(0, Dt.IndexOf(Environment.NewLine)+2)

Regards
Gokul

HI @Olivera_Kalinic

Have a look on the document for more information

Regards
Gokul

Hi Olivera :grin:
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