devxlogo

Merge Two DataTables, Preserving the Old Values

Merge Two DataTables, Preserving the Old Values

The datatable1.Merge(datatable2) statement will merge datatable2 into datatable1. You cannot retrieve the old values in the datatable1 after the merge happens.

A quick way to do that, is by creating a copy of the first datatable and then doing the merge in the following way.

Dim dtMerged As DataTable = New DataTable() dtMergerd = datatable1.Copy() dtMerged.Merge(datatable2, True)
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist