Hi,

I have a datatable dt1 having the columns: col1, col2, col3...colN. dt1 is populated with data

From dt1 , I want to generate another table having only a subset of the dt1 columns. For example, i want a table: dt2 that only has the column: col3, col5...

I still want the genreated table dt2 to be populated with data from dt1, except taht the columns I don t need from dt1 will just be ignored while generating dt2.

Thanks.