Formula help for calculating targets

emmalouiseee

New Member
Joined
Dec 17, 2018
Messages
2
Hey!

I am having a hard time getting a formula in 1 cell that will do what I need. Maybe it's really easy and I am just having a moment or maybe it's just not possible.

Scenario:

Target between 0-10000 needs to be multiplied by 0.85 THEN anything after this point needs to be multiplied by 0.30

I understand this may not be possible in 1 cell so I have tried splitting it into two but then I am getting another issue where if the value is 15000 I need the first equation to give me 0-10000 at 0.85 and then the second cell to give me 10001-15000 at 0.30 but I tried an IF statement with no luck.

Option One
$ TargetComm
150004499.7<<<<1 Formula to figure out Comms



<tbody>
</tbody>
Option Two
$ Target0-1000010001+
800068000
1500030001499.7<<<<Split into two formulas

<tbody>
</tbody>




Thanks in advance!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi,

Are those typos or I'm completely misunderstanding your question?

Why does 15000 Only get 4499.7, but 8000 gets 6800 ??
 
Upvote 0
I'm confused. Your title says that to "calculate targets". But your example suggests that you are given the target, and you want to calculate something (commission; tax?) based on a tiered rate structure.

Also, your calculation for 15000 is incorrect. For the first 10000, you multiplied by 0.30 instead 0.85. For the amount over 10000 (5000), you calculated by 0.29994 (approx) instead of 0.30.

The correct calculations are:

Book1
ABCDE
1AmtOne Formula<=10000 @85%>10000 @30%Total
280006800680006800
315000100008500150010000
Sheet1


The formula in B2 is:

=MIN(8500,A2*0.85) + MAX(0,(A2-10000)*0.3)

The formulas in C2:E2 are:

C2: =MIN(8500,A2*0.85)
D2: =MAX(0,(A2-10000)*0.3)
E2: =SUM(C2:D2)
 
Last edited:
Upvote 0
Hey!

I am having a hard time getting a formula in 1 cell that will do what I need. Maybe it's really easy and I am just having a moment or maybe it's just not possible.

Scenario:

Target between 0-10000 needs to be multiplied by 0.85 THEN anything after this point needs to be multiplied by 0.30

I understand this may not be possible in 1 cell so I have tried splitting it into two but then I am getting another issue where if the value is 15000 I need the first equation to give me 0-10000 at 0.85 and then the second cell to give me 10001-15000 at 0.30 but I tried an IF statement with no luck.

Option One
$ TargetComm
150004499.7<<<<1 Formula to figure out Comms


<tbody>
</tbody>
Option Two
$ Target0-1000010001+
800068000
1500030001499.7<<<<Split into two formulas

<tbody>
</tbody>




Thanks in advance!


Sorry that was so confusing! it was how it was explained to me - doing for a colleague at work.

I have used this formula and it works perfectly - thank you so much!! saved a lot of time :)
 
Upvote 0
If I understand the question, I think another way to do this would be with nested IF functions.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,885
Messages
6,127,571
Members
449,385
Latest member
KMGLarson

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