how to copy only the columns in a DataTable to another DataTable? February 27, 2023 by Tarik DataTable.Clone() should do the trick. DataTable newTable = originalTable.Clone();