Urgent help - Rank function

rohanmalhotra

New Member
Joined
May 4, 2010
Messages
29
Hi

i have to prepare a sheet that will give performance ratings to the employees (keeping bell curve in mind). The ratings that needs to be given are 4, 3 & 2. Can anyone help me with it?


Thanks
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Assuming you're basing this on a single parameter per employee, and the parameter is normally distributed:

=IF(parameter >= MEAN(params)+STDEV(params),4,IF(parameter <= MEAN(params)-STDEV(params),2,3))

This will give the average 68% of the employees a rating of 3, the top 16% a rating of 4 and the bottom 16% a rating of 2.

That's the best answer I can give you without seeing some sample data.
 
Upvote 0
Thanks Moonfish.

The parameters are same. its just that the difference is that the top 20% should get a rating of 4, next 60% a rating of 3 and rest get a rating of 2. Also, it would be helpful if you give an example as i am quite new to this.

Thanks once again.
 
Last edited:
Upvote 0
How about:
=IF(PERCENTRANK(all_perf_ratings,individual_rating)>=0.8,4,IF(PERCENTRANK(all_perf_ratings,individual_rating)< 0.2,2,3))

?
 
Upvote 0
Hi Glen

this is not comparing scores with one another or is it? correct me if i am wrong.

I will give you an example. There are 6 members in a team and they get scores as below :

A - 85%
B - 95%
C - 79%
D - 86%
E - 79%
F - 85%

i want to give them rating based on there scores. Top 20% - 4, Bottom 20% - 2 and rest of them 3.

Thanks for your help
 
Upvote 0
I am sorry Glenn i dont know how to attach a file, but i used the same formula you gave me. After minor adjustments, everybody is getting a rating of 2 if they achieve 100%
 
Upvote 0

Forum statistics

Threads
1,224,557
Messages
6,179,508
Members
452,918
Latest member
Davion615

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