Getting a average from a survey

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have survey data that I need to get a average for - Customers were to
select 1-5 for a answer and I now have totals for each of those responses.

1 not satisfied 6
2 7
3 14
4 15
5 very satisfied 20

The answer needs to be a number between 1-5 for the weighted average of the
totals.

Can someone please help
 
=(6*1+7*2+14*3+15*4+20*5)/(6+7+14+15+20)

HTH. Best wishes Harald
 
One way:

Assuming your data are in B1:B5:

=SUMPRODUCT(B1:B5,{1;2;3;4;5})/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

Back
Top