(From row in datatable.asenumerable() let ia=row.item(“column1”).tostring let ib=row.item(“column2”).tostring where(ia.equal(ib)) select row).copytodatable
This will compare each row column 1 and column 2 If it equal it will copy only that rows.
Your expression seems no problem. You might need to check data in details.
For example, there is possibility there are different type whitespaces in each column.
If so, the following might work.
Am trying to compare the columns as mentioned in the image but this using filter activity am not able to get the output as it having data in dt, instead planning to replace the LINQ query. Could you please help
Hi, you can follow the above given solution by @Yoichi .
You cannot put column name in the value section like that, it requires the value not the column name.