Hi there @1vivek12,
You can do the following:
Assign – dtMyDataTable = dtMyDataTable.AsEnumerable.GroupBy(Function (x) x.Item("Sector_ID")).Select(Function (i) i.First).CopyToDataTable
This will return the first rows with unique values in the column “Sector_ID”.
Thanks,
Josh