Formula for figuring a multiplier in a range

Doc_H

New Member
Joined
Jun 22, 2012
Messages
8
Hi all, I'm new to the forum and I'm thankful for it as it is a great source of knowledge.

Here's my dilemma:
I am in need of a formula that will figure out a multiplier number from a range of numbers. Here's the example I'm working with. This will be used in a worksheet to measure performance and incentive pay for my group and below is a sample of one of the many goals for the group. Incentive will be calculated on a point system. The multiplier is based on the "Actual Result" or performance of the individual. With that said, if the value falls between a range within say, the threshold rate of 1.75% and the target rate of 1.25%, what formula can assist in figuring out the actual multiplier?


Available
Points
(Multiplier)TargetsACTUAL RESULTPOINTS
EARNED
1550%Threshold1.75%1.36%=Multiplier X Available Points
100%Target1.25%Multiplier
200%Maximum0.75%

<tbody>
</tbody>

Any assistance is greatly appreciated!

Thank you!
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
=A2*LOOKUP(B2,{0.0075,0.0125,0.0175},{2,1,0.5})

Excel Workbook
ABC
1Available PointsActual ResultPoints Earned
2151.36%15
Sheet1
 
Upvote 0
My formula is not returning the multiplier, it is returning the Points Earned, per your example (Multiplier x Available Points)
 
Upvote 0
Thanks for clearing that up. I entered it into the Points Earned field and it assumed a multiplier of 1x or 100% based on a result of 1.36%.

Is there a way to get a more accurate multiplier or "points earned" result based on the actual result percentage? For instance, if the actual result were 1.70%, which is closer to threshold, the multiplier in that case would be closer to 50% or 7.5 points but if the multiplier were 56% then the points would increase to 8.4. In essence, I'd like to multiplier to be anywhere in the range of 50% and 200% and not necessarily 50%, 100%, and 200%. I hope i'm not convoluting this response too much.
 
Upvote 0
Maybe ...

Code:
       --A-- -B-- ---------------------------C----------------------------
   1   1.75%  50%                                                         
   2   1.25% 100%                                                         
   3   0.75% 200%                                                         
   4                                                                      
   5   0.75% 200% B5: =PERCENTILE($B$1:$B$3, 1-PERCENTRANK($A$1:$A$3, A5))
   6   0.85% 180%                                                         
   7   0.95% 160%                                                         
   8   1.05% 140%                                                         
   9   1.15% 120%                                                         
  10   1.25% 100%                                                         
  11   1.35%  90%                                                         
  12   1.45%  80%                                                         
  13   1.55%  70%                                                         
  14   1.65%  60%                                                         
  15   1.75%  50%
 
Upvote 0
Thanks, shg. This is really good stuff. Do I need to input the code using VBA or can I use the formula directly?
 
Upvote 0
I tried the formula but didn't have much luck. =PERCENTRANK(ARRAY,X,SIGNIFICANCE) gives the right idea but the formula assumes that 1.75% is 100%, 1.25% is 50%, and 0.75% is 0%. Any thoughts?

Thx
 
Upvote 0

Forum statistics

Threads
1,215,766
Messages
6,126,758
Members
449,336
Latest member
p17tootie

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