Hi all,
i need to create a list from a query that'll count the number of row associate with a type (from 1 to 3) and display the number of row of each type in DESC order
For example:
row1 = type1
row2 = type3
row3 = type2
row4 = type1
row5 = type2
row6 = type2
so the list need to display the query like this :
type2 = 3
type1 = 2
type3 = 1
can someone have an idea how i can do that ???
nomad