Compare 2 data and find the differences

@Ryan_Lee,

Follow this approach:

  1. Iterate through dt1 Columns using For Each activity. assign a index variable to it.

  1. Add one Assign activity inside For Each like this
dt2.Columns(intColumnIndex).ColumnName = currentItem.ColumnName

That’s it. It will change the column names of the dt2 same as dt1