Hi,
Here you go:
HOW TO: Implement a DataSet SELECT DISTINCT Helper Class in Visual C# .NET
http://support.microsoft.com/default...b;EN-US;326176
--
Miha Markic [MVP C#] - RightHand .NET consulting & development
SLODUG - Slovene Developer Users Group
www.rthand.com
"Extreme Datasets" <(E-Mail Removed)> wrote in
message news:09D82BB6-665D-4C9B-8702-(E-Mail Removed)...
> Adding a distinct row filter or select
>
> "SELECT * FROM Records INNER JOIN OtherTable..." is the select and DS is
> filled with a da
>
> Dim DR() As DataRow = DS.Tables(0).Select("Distinct Count(RecordID)")
>
> I hope you get the idea, how to get this to work?
>
>