Is it possible to count enumeration values?

1
Hi,   We are building a questionnaire and are hoping to count the various responses that will be selected by the user in the form of enumerations. How would we go about counting each of the response enumeration options? 
asked
1 answers
2

I assume you can differentiate between questions (e.g. question 1, question 2 etc.). Then you could do a database retrieve of all question objects for question 1, with enumeration value X. Follow up the retrieve with a count operation and you should have the number you are looking for

answered