How do you rank in order numbers from highest to the lowest?

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

Guest

For Example

How would I rank these numbers in order from highest to the lowest

Current Points Current Place
46
48
44
44.5
48
44
44
 
Using the "Large" function - "=Large( array, 2 )" will return the second
largest number in the array.

Regards,
Bill
 
With data in A2 to A8, enter this in B2, and copy down:

=RANK(A2,$A$2:$A$8)
 
If you don't want the duplicates ranked the same
=RANK(A2,A$2:A$10)+COUNTIF(A$2:A2,A2)-1
 

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