How do I calculate a distribution

  • Thread starter Thread starter Donald Dudar
  • Start date Start date
D

Donald Dudar

I have a query that shows the responses from participants
in a survey. I now want to create a table, and then a
graph, that shows the frequency of each response, that is,
how many people reported value "1", how many value "2" and
so on.

Is there an easy way to do this?

Thanks

Don
 
Yes, use a group by query where you group on the answer, and also have a
Count(answer)
 
Back
Top