Combining n datatables into a single datatable without Duplication in uipath

Hii Team,

Please Help on This.

Regards,
Ranjith Ratnala.

Do you have a primary key?

all the data table column names and length is same

You can use the merge data table activity and then use a for each to eliminate duplicate records. In the for each, you would filter the same table to see if it has duplicate values. If so, set row.item(0) to “DELETE”

Once the for each is complete, run a filter to remove any records containing “DELETE” in the first column.