Remove duplicated information

Hi,

I need to remove duplicated row information.
Ex :
name number
AAA 123
BAC 234
AAA 123
ABC 678

Here we need to remove the duplicate rows based on Name and number column information.
Can any one help me with this logic?

Kindly find the attachment dummy.xaml (20.8 KB)
dummy.xlsx (9.4 KB)

1 Like

@hemanth_chinna dataTable dt = dataTablename.DefaultView.ToTable(True,“name”,“number”)

1 Like