Assigning Points to top three

Travisallen2007

New Member
Joined
Jan 21, 2018
Messages
30
Office Version
  1. 365
Hello,

Thank for taking a second to read! I am really appreciative of any help you can provide.

I am looking to assign a point value to a "Overall" Table based on results from a specific field table.

EX:

One table has 16 people with results for a weeks worth of data. At the end i have made an average "Overall score" field to see who had the highest results for that time frame(In field j20-j32).

I would like for the spreadsheet to automatically assign points to the top three scores in fields (C3-c15). Scores would be 10 for top, 5 for second, 2 for third, and zero for everyone else.

is there a way to do this?

Thanks again for any help!
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Hi,

Here's one way:


Book1
BCDIJ
2PersonRank Score
3A0
4B10
5C0
6D5
7E0
8F2
9G0
10H0
11I0
12J0
13K0
14L0
15M0
16
19PersonWeek's Average
20A11
21B23
22C12
23D22
24E13
25F21
26G14
27H20
28I15
29J19
30K16
31L18
32M17
Sheet17
Cell Formulas
RangeFormula
C3=CHOOSE(RANK(J20,J$20:J$32),10,5,2,0,0,0,0,0,0,0,0,0,0,0,0)


C3 formula copied down to C15.
 
Upvote 0
So i have a quick follow up to this amazing fix!

I would like to set a small box that Says the winners name:

EX: I have all of the total scores for the weeks activities in fields g3-g15

I would like for this to associate the person who is in a3-a15 (Name field) whomever has the highest score shows their name in field I4... does this require that i start making connections between data and names?
 
Upvote 0
So i have a quick follow up to this amazing fix!

I would like to set a small box that Says the winners name:

EX: I have all of the total scores for the weeks activities in fields g3-g15

I would like for this to associate the person who is in a3-a15 (Name field) whomever has the highest score shows their name in field I4... does this require that i start making connections between data and names?

Hi,

See that you have a follow up question.

Well, since the person with the highest score is also the person Ranked 10, we can either use the Rank result or the Overall Total, both formulas provided:


Book1
ABCDGHIJ
2PersonRank ScoreTotal ScoresWinnerWinner
3A077BB
4B10161
5C084
6D5154
7E091
8F2147
9G098
10H0140
11I0105
12J0133
13K0112
14L0126
15M0119
16
19PersonWeek's Average
20A11
21B23
22C12
23D22
24E13
25F21
26G14
27H20
28I15
29J19
30K16
31L18
32M17
Sheet17
Cell Formulas
RangeFormula
C3=CHOOSE(RANK(J20,J$20:J$32),10,5,2,0,0,0,0,0,0,0,0,0,0,0,0)
I3=INDEX(A3:A15,MATCH(10,C3:C15,0))
J3=INDEX(A3:A15,MATCH(MAX(G3:G15),G3:G15,0))


I3 formula uses the Rank score,
J3 formula uses the Total score.
 
Upvote 0
Perfect!! The second one works great - I have text in the fields as well so the MAX function works the best - Thank you for your Awesome help!
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top