kindly try with remove duplicate rows activity
or
we can use this expression dt = dt.Asenumberable().Group(Function(a) a.Field(of string)(“yourcolumnname”).ToString).Select(Functions(b) b.First()).CopyToDatatable()
Cheers @CamiCat
(From p in dt.Select() where( From q in dt.Select() where string.Join(",",q.ItemArray).Equals(string.Join(",",p.ItemArray)) Select q).ToArray.Count>1 Select p).ToArray.CopyToDataTable()
I would like to have file with no rows duplicated.
With your workflow the excel file, in case of 4 identical rows, maintains them at the end.
How to have a file ith no duplicates, but only one row?
Cami
Usually duplicates in excel will be searched along each rows in it
So to group them we can take a common column, a primary column based on that we can group them
Is there any column of such kind