Excel formula help

braidp

New Member
Joined
Dec 27, 2018
Messages
39
Hi I was hoping someone could help me we a formula that I've been working on

I am trying to build a progressive commission tier table and have it pretty much working other than the first payment level.

When I put £1000 it calculates at zero, as shown below
And if I put in £2000 of sales generated it only calculates £1000 x 2% rather than the full £2000

Can someone please help with this?


Commission table.PNG
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Like this?

Book1
ABCDEFG
1
2Sales1000
3
4Commission
5
6TierReveue TargetTier Percentage
71100020002%20
82200050003%90
935000100005%250
1041000500008%3920
11
12
13
Sheet1
Cell Formulas
RangeFormula
F7:F10F7=MAX(0,MAX(D7,$C$2)-C7)*E7
 
Upvote 0
That looks correct to me.

According to your grid, and the way the formula is written, it looks like it is doing what it is supposed to.
Your grid seems to be saying that for values ABOVE 1000 and less then 2000, apply 2%.
Since 1000 is NOT above 1000, the amount would be 0.
Since 2000 is exactly 1000 above 1000, the 2% would be applied to 1000, not 2000.

Is that not what you want to happen?
If not, please explain exactly how you want this to work, and show us an example calculation with a large number, like 15,000 so we can understand your exact logic.
 
Upvote 0
Hi both thanks for the advice, I've managed to get Tier 1 working as I wanted now. by including an IF statement at the start and deleting the substraction of C7 from the first row. The rest of the tiers I've left the original formula in.

Commission Table 2.PNG
 
Upvote 0
Like this?

Book1
ABCDEFG
1
2Sales1000
3
4Commission
5
6TierReveue TargetTier Percentage
71100020002%20
82200050003%90
935000100005%250
1041000500008%3920
11
12
13
Sheet1
Cell Formulas
RangeFormula
F7:F10F7=MAX(0,MAX(D7,$C$2)-C7)*E7
Hi Sufiyan,

Thak you for your reply however that wasn't quite what I was hoping to do with it but really appreciate you trying to help.

I've managed to figure out a solution to my problem below
 
Upvote 0

Forum statistics

Threads
1,215,474
Messages
6,125,023
Members
449,203
Latest member
tungnmqn90

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