A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Weighted Averages for Rankings



 
 
Thread Tools Display Modes
  #1  
Old April 8th, 2009, 03:12 PM posted to microsoft.public.excel.worksheet.functions
Katie
external usenet poster
 
Posts: 256
Default Weighted Averages for Rankings

I have a spreadsheet where we rank performance of 9 groups with 13 categories
of items. I want to put certian weight on certian items. Is there a way to
do this and be able to rank the groups 1-9.
  #2  
Old April 8th, 2009, 05:33 PM posted to microsoft.public.excel.worksheet.functions
Bernie Deitrick
external usenet poster
 
Posts: 2,496
Default Weighted Averages for Rankings

Katie,

Weighted scores are calculated using

=SUMPRODUCT(Scores,Weights)/SUM(Weights)

(though the /SUM(Weights) parts is optional if there is no requirement to keep the score within
certain bounds.)

You could use that formula for each group:

=SUMPRODUCT(CategoryScores1,CategoryWeights)/SUM(CategoryWeights)
=SUMPRODUCT(CategoryScores2,CategoryWeights)/SUM(CategoryWeights)
.....
=SUMPRODUCT(CategoryScores9,CategoryWeights)/SUM(CategoryWeights)


Depending on your layout, you will end up with something like this
=SUMPRODUCT(A2:M2,$A$1:$M$1)/SUM($A$1:$M$1)
or this
=SUMPRODUCT(B2:B14,$A$2:$A$14)/SUM($A$2:$A$14)

Then you can use RANK on those results

=RANK(N2,$N$2:$N$10)

HTH,
Bernie
MS Excel MVP


"katie" wrote in message
...
I have a spreadsheet where we rank performance of 9 groups with 13 categories
of items. I want to put certian weight on certian items. Is there a way to
do this and be able to rank the groups 1-9.



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.