Needing to rank values

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

Guest

I have a 15 employees that are measured in 7 different metrics of their job
function. I need to be able to determine who is performing the best and worst
in each metric and rank my employees. In some of these metrics the largest
value would be considered better while in other metrics the smaller value
would be the best. Any suggestions?

Ex.
Employee Qual Timely Commit Abs
a 2.75 412 97.56% 3.28%
b 4.25 510 95.40% 0%
c 3.25 380 96.78% 1.8%
 
Use the RANK function.

Assume you want to rank values in A1:A10.

For a rank where the higher value is better:

=RANK(A1,A$1:A$10)

For a rank where the lower value is better:

=RANK(A1,A$1:A$10,1)
 
Thank you for your help.

T. Valko said:
Use the RANK function.

Assume you want to rank values in A1:A10.

For a rank where the higher value is better:

=RANK(A1,A$1:A$10)

For a rank where the lower value is better:

=RANK(A1,A$1:A$10,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