Hi, I need to add new column in Datatable. The datatable consists of 3 columns need to add new column at start of the datatable, if in middle also ok. I did try AddDataColumn activity which is add the column at the end of datatable, but i need it from start or middle of the column. Please assist me.
The DataColumn.SetOrdinal(Int32) method changes the ordinal or position of the DataColumn to the specified ordinal or position.
When you change a column’s ordinal, the column is moved to the new position in the collection of columns. Any columns between the previous and new ordinal will be renumbered, to adjust for a column’s new ordinal.
Its same solution which I updated before
1 Like
Thanks, its works.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.