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
> Something like this would work;
>
[quoted text clipped - 9 lines]
> > I want the answer to be a 1-5 number off all the respondents.
> > Thanks
Dave R. - 13 Dec 2004 21:56 GMT
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)
> Dave - That gave me a answer of zero
> one - here is how the data looks
[quoted text clipped - 23 lines]
> > > I want the answer to be a 1-5 number off all the respondents.
> > > Thanks