Hello Robochamps,
Can somebody help me to how to get distinct rows from a given datatable for ex. if their is a datatable named DT1 then i want to get all the distinct rows from table DT1
thanks!!
Hello Robochamps,
Can somebody help me to how to get distinct rows from a given datatable for ex. if their is a datatable named DT1 then i want to get all the distinct rows from table DT1
thanks!!
Use below code to get distinct rows in a column
dataTable.DefaultView.ToTable(True, <columnName>)
1.Use Remove Duplicate Rows Activity in properties pass input Datatable and create output
DataTable variable.
2.Use DataTable.DefaultView.ToTable(True,“ColumnName”).
Regards,
Kommi Jeevan.