DataTable - Remove Duplicate Row

Hi
this expression could help you with
datatable = datatable.AsEnumerable().GroupBy(Function(a) a.Field(of string)(“yourcolumnnname”).ToString).Select(Function(b) b.First()).CopyToDatatable()

if you are not getting asenumberable then kindly have a view on this thread

Cheers @Cormac

5 Likes