Hello,
I am attempting to get a distinct list of all grade levels from a sharepoint list that contains a book name and a grade level. I want to bind this list to a dropdown, but for some reason the Distinct function indicates that it is returning a multiple column table instead of the single column table. The code I used in the Items section of my dropdown was
Distinct(Notebooks,Grade)
And this generated a warning. I tried creating a collection to store the results but what I is stored is a single table containing 3 columns including the type of data, id, and Grade level. The table in the collection only contains a single Grade and no others. Am I just using the distinct wrong? is it not supposed to be used off of a sharepoint datasource?