Comparing two separate Excel files and keeping only unique results

when we join the two datatables with Join type FULL we can detect in the join result

  • matching items - left join col AND right join col are not null (and the same)
  • not matching in right table - left join col is not null and right join col is null
  • not matching in left table - left join col is null and right join col is not null

Well explained also here