Im using data scrapping but im getting like this … i want to delete that coloumn-0 coloumn-1 and so on and i want status date as the headings
plzz reply
Hi @katta_nikhil
Use a for loop with dt.Columns and change type argument to datacolumn
Inside the loop use currentitem.ColumnName = dt.Rows(0)(currentitem.ColumnName).ToString
After the loop use assign to remove the first row as below dt = dt.AsEnumerable.Skip(1).CopyToDataTable
Or use remove data row activity
Hope this helps!!