SSRS distinct lookupset function

You don’t need Linq, but you do still need custom code (in BIDS go to Report -> Report Properties -> Code) You can put a RemoveDuplicates function in here, something like this: Public Shared Function RemoveDuplicates(m_Array As Object()) As String() System.Array.Sort(m_Array) Dim k As Integer = 0 For i As Integer = 0 To m_Array.Length … Read more