i have created a new content type using CCK, the content type name is "schools", and it has a field named "degrees", i use a view to show all the degrees from all the schools, but, i need to show all values together, not grouped by schools, let me put an example:
if i have 3 schools, let's say 'A','B' and 'C'; 'A' has a degree named 'a' 'B' the degree 'b' and 'C' the degree 'a', if i choose the "View Type" "table view" it will show a table with 3 rows, in the first one there will be an 'a' in the second a 'b' and in the third a 'a', and what i need is that it shows me something like "a,b" something that group all the values and eliminate duplicates. Any clues??

Comments

grove101’s picture

To avoid duplicate values in views you could use Node:Distinct in the filters but afaik this will work only on Nodes and not on a CCK field. I can suggest that instead of a CCK field use a vocabulary 'degrees' and use it with the content type 'schools' so this way you have all the degrees under one vocabulary and display all the terms on one page.

Regards
G