Remove Column Name after filtering

Hi,

I have filtered Dt in such a way that specific column does not contains null values. In output dt, i gave only the column that i have filtered. Now i need to paste it to SAP, i wanted to remove column name and paste only values of that column. Can anyone pls help how to remove column name

Hi @Sirisha_Siri ,

Check if the following Expression works :

stringdt = String.Join(Environment.NewLine,Split(stringdt,Environment.NewLine).Skip(1).ToArray)

Use an Assign Activity for the above.

stringdt, should not contain the First Line i,e the Column Names after the above operation.

it worked @supermanPunch … thanks

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.