Distinct Rows using a DataTable

  • Thread starter Thread starter Mary Smith
  • Start date Start date
M

Mary Smith

I am looking to create a DataTable with one column showing only distinct
records sorted ASC. How can I get the following results.

Sample Records
------------------------------
CD
Books
DVD
Books
CD
DVD
DVD
DVD
CD
CD
CD
 
Mary,

If you not are using 2.0 or newer, then you can use the overloaded DataView
for this.
In that it is build in.

Cor
 
Sorry,

If you are using 2.0 or newer then you can use the overloaded DataView

Cor

Cor Ligthert said:
Mary,

If you not are using 2.0 or newer, then you can use the overloaded
DataView for this.
In that it is build in.

Cor
 
Back
Top