Compare two tables and write data only for same values

@markosc

Use a Full Join datatype

Your case is a typical Join scenario. But only use = as operator
About Join types have a look here:

After joining the datata (result: dtJoin DataTable) just remove the unneeded Columns added by the Join activity by

  • using a Filter datatable (Col removal configuration)
  • dtJoin.DefaultView.ToTable(False, {“a”,“b”,“b_1”})

Rename later b_1 ColName to c by

YourDataTableVar.Columns(“b_1”).ColumnName = “c”