Formulas and/or formating

G

Guest

I have a simple spreadsheet that shows ten teams in rows with point totals.
How do I set this up so that the team with the highest total points is always
on top of the list with the other teams in descending order by point valve?
 
D

Domenic

Assumptions...

A1:A10 contains the 'Team Name'

B1:B10 contains the 'Total Points'

Formula...

D1, copied down and over to Column E:

=INDEX(A$1:A$10,MATCH(LARGE($B$1:$B$10-ROW($B$1:$B$10)/10^10,ROWS(D$1:D1)
),$B$1:$B$10-ROW($B$1:$B$10)/10^10,0))

....confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

Hope this helps!
 
G

Guest

Domenic:

That doesn't do what I what. The teams are listed in a7:a16 and the scores
are in m7:m16. I want to have the team with the highest score be moved to
the top with the other teams listed below by point valve. Is this possible?
And THANK YOU!! for your help!
 
D

Domenic

Try the following array formulas that need to be confirmed with
CONTROL+SHIFT+ENTER, not just ENTER...

O7, copied down:

=INDEX(A$7:A$16,MATCH(LARGE($M$7:$M$16-ROW($M$7:$M$16)/10^10,ROWS(O$7:O7)
),$M$7:$M$16-ROW($M$7:$M$16)/10^10,0))

P7, copied down:

=INDEX(M$7:M$16,MATCH(LARGE($M$7:$M$16-ROW($M$7:$M$16)/10^10,ROWS(P$7:p7)
),$M$7:$M$16-ROW($M$7:$M$16)/10^10,0))

Hope this helps!
 

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