Ranking percent formula based on goal

Cindyann

New Member
Joined
Apr 24, 2014
Messages
42
Office Version
  1. 365
Platform
  1. Windows
Hello,

I have a ranking sheet that I am currently using to rank employees based on performance. When it come to Talk time however you can either be at the target or below the target but never above. If the max percent you can get in the category is 25%, with a goal of 600, then if I am at 500 or 600, i will get the full 25% however if I am at 650, I will get 15% just as an example.
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Something like this?
Code:
=IF(AND(A2>500,A2<600),0.25,IF(A2>600,0.15,0))
 
Upvote 0
This is great. What if there isn't a standard 15% and the 25% decreases when you are over the goal? So for e.g. at 600 or below, I get 25% but my % would differ if am at 700 or even 650.

Something like this if the goal was 510

50925.00
554
17.79
568
15.42
488
25.00
543
19.49

<colgroup><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
It would just be additional nested IF statements based on the categories to be identified.
Code:
=IF(AND(A2>500,A2<600),0.25,IF(AND(A2>600,A2<700),0.15,IF(A2>700,0.1,0)))
 
Upvote 0
Solution

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

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