How to remove the value in datatable based on other datatable

I have two datatable
For example
Dt1 dt2
1 2
2 3
3 4

Output should be
Dt3
4
Since the comon thing should be removed in dt2

@sruthesanju Try with the below exp

DT2.AsEnumerable.Except(DT1.AsEnumerable(),System.Data.DataRowComparer.Default).CopyToDataTable

Please find attached workflow below

Example.zip (2.7 KB)