엑셀의 중복된 값의 행삭제는 어떻게 구현하나요?

만약 엑셀의 B컬럼에 중복된 값이 있다면
중복된 것중에 밑에 있는 행을 삭제하려면 어떤식으로 구현해야할까요??

Hi @therocksss9265,

Use below code to remove duplicate record from the table based on particular column

dt= dt.AsEnumerable().GroupBy(Function(i) i.Field(Of String)("Columnwithduplicatevalues")).Select(Function(g) g.First).CopyToDataTable()

(Output will dt - datatable type)

Regards,
Arivu