Tabulating Survey Results

G

Guest

I have just completed a survey in which the recepients answered a question
with a 1-5 response. 1 being Not satisfied 5 being very satisfied - I have
the totals for each response but want to be able to take the total responses
in each category and create a average result of the question.
Column one has the 1-5 in it - Column 2 has the number of reponses for each.
I want the answer to be a 1-5 number off all the respondents.
Thanks
 
D

Dave R.

Something like this would work;

=SUMPRODUCT(A1:A5,B1:B5)/SUM(B1:B5)




"Tabulatin Survey results" <Tabulatin Survey
(e-mail address removed)> wrote in message
news:[email protected]...
 
G

Guest

Dave - That gave me a answer of zero
one - here is how the data looks
column A Column B
----------------------------------------------
1 not satisfied 4
2 10
3 19
4 16
5 very satisfied 17

I want a weighted average of all the respondents -what is the average
satisfaction out of these 66 respondents -?? a number needs to be between 1-5
Thanks
 
D

Dave R.

Column A contains text which cannot be added. Usually you would try not to
mix text and numbers if you want to do any math, but you can use

=SUMPRODUCT(--LEFT(A1:A5,1),B1:B5)/SUM(B1:B5)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top