Target, Minimum, and Maximum formula Automation

Lesliebryce

New Member
Joined
Apr 24, 2021
Messages
1
Office Version
  1. 2016
  2. 2010
Platform
  1. Windows
Hi,
I need to calculate incentive and it’s based on the minimum, Target, and maximum.
minimum of 50 files gets an incentive of 90%
target of 60 files gets an incentive of 100%
Maximum of 90 files gets an incentive of 150%.
So if someone has 70 files they fall between target and maximum, which would be over the 100% but less than the 150% and the difference of percentage needs be calculated so for example that individual would be at 116% payout. How can I calculate that to incorporate it?
 

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.
Welcome to MrExcel Message Board.
Try this:
Cell Formulas
RangeFormula
E2:E17E2=D2/60
F2:F17F2=IF(E2<0.9,"Less Than Minimum",IF(E2=0.9,"Minimum",IF(E2<1,"Between Minimum And Target",IF(E2=1,"Target",IF(E2<1.5,"Between Target And Maxiumum",IF(E2=1.5,"Maximum","Over the Maximum"))))))
 
Upvote 0
Or Other Method at Column D
Cell Formulas
RangeFormula
B2:B17B2=A2/60
C2:C17C2=IF(B2<0.9,"Less Than Minimum",IF(B2=0.9,"Minimum",IF(B2<1,"Between Minimum And Target",IF(B2=1,"Target",IF(B2<1.5,"Between Target And Maxiumum",IF(B2=1.5,"Maximum","Over the Maximum"))))))
D2:D17D2=CHOOSE((B2>0) + (B2=0.9) + (B2>0.9)*2 + (B2=1)+ (B2>1)*2 + (B2=1.5) + (B2>1.5)*2, "Less Than Minimum", "Minimum", "Between Minimum And Target", "Target", "Between Target And Maximum","Maximum", "Over The Maximum")
 
Upvote 0

Forum statistics

Threads
1,215,548
Messages
6,125,468
Members
449,230
Latest member
ASBeard

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