J
James V. Bohen
I have a database with results from a phone survey. In a query, I
want to group the results by the answers given to a particular
question. Then I want to count the number of people who gave each
particular answer to that question. For this column I use
count(RespondentName). Finally I want to calculate the percentage of
people who said each answer. This last is the one I can't figure out.
It should be count(RespondentName) for each answer divided by
count(RespondentName) for the whole survey. How do I get the
denominator I want? Currently I'm manually entering the number of
responses for the whole survey as the denominator, i.e.,
count(RespondentName)/44.
Jim Bohen
want to group the results by the answers given to a particular
question. Then I want to count the number of people who gave each
particular answer to that question. For this column I use
count(RespondentName). Finally I want to calculate the percentage of
people who said each answer. This last is the one I can't figure out.
It should be count(RespondentName) for each answer divided by
count(RespondentName) for the whole survey. How do I get the
denominator I want? Currently I'm manually entering the number of
responses for the whole survey as the denominator, i.e.,
count(RespondentName)/44.
Jim Bohen