Tier calculation

ferrigeu

Board Regular
Joined
Jun 14, 2017
Messages
50
Office Version
  1. 2016
Platform
  1. Windows
small problem, i think...
below is a table in columns A-D, starting at row 2
if the customer has assets between 0-1'000'000.00, the cost of service is 5%
if the customer has assets of 12'000'000.00 then the cost of service is
5% for the first 1'000'000.00,
3% for 1'000'000.01 - 10'000'000, and
2% for the balance of 2'000'000.00 in the tier of 10'000'000.01 to 12'000'000.00

i cant use arrays or VBA as we use a rather restrictive IT environment
thank you for your help



Min ($)Max ($)Cost per annum
Tier 1-1,000,0005.00%
Tier 21,000,000.0110,000,0003.00%
Tier 310,000,000.011,000,000,0002.00%
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
the asset data is in K7-K37
the results are in L7-L37



EOD Holdings ($)Result
5,868
17,603
58,675
117,350
117,350
176,025
469,401
762,777
1,349,529
1,936,280
4,870,038
4,870,038
4,870,038
5,456,790
6,923,669
8,390,548
11,324,306
11,382,981
11,441,656
12,028,408
12,321,784
12,908,535
13,495,287
15,255,542
15,255,542
15,196,866
14,962,166
14,962,166
14,668,790
14,668,790
 
Upvote 0
N.B.
The names are not necessary; it is a personal preference.
The names can be assigned to be applicable to the sheet or to the workbook.
Determine the numbers by looking at the tier specifications or by reviewing the ranges.
For example with the formula in B2, select B7:B9-B6:B8 and press F9.

The formula in C2 uses named arrays. The array of Brackets data and the array of Rate Differentials are named.
See Formulas Name Manger
- The array of Bracket data is named aB Refers to ={0;1000000;10000000}
- The array of Rate Differentials is named aR Refers to ={0.05;-0.02;-0.01}
Advantages
The formula is easier to read.
The table is not required if the formula C2 is used.



Commission2022.xlsm
ABCD
1Total sales10,000,000.00
2Commission320,000.00320,000.00
3
4
5BracketsRates --- Arithmetic ---
6cell b7 is blankBy BracketCumulative
705%50,000.0050,000.00
81,000,0003%270,000.00320,000.00
910,000,0002%0.00320,000.00
101E+308
1aa
Cell Formulas
RangeFormula
B2B2=SUMPRODUCT(--(B1>A7:A9),B1-A7:A9,B7:B9-B6:B8)
C2C2=SUMPRODUCT(--(B1>aB),B1-aB,aR)
C7:C9C7=MAX(0,MIN($B$1,A8)-A7)*B7
D7D7=MAX(0,MIN($B$1,A8)-A7)*B7+N(D6)
D8:D9D8=MAX(0,MIN($B$1,A9)-A8)*B8+D7
A10A10=BigNum


Commission2022.xlsm
KL
75,868293.40
814,668,790413,375.80
9
1aa
Cell Formulas
RangeFormula
L7:L8L7=SUMPRODUCT(--(K7>aB),K7-aB,aR)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

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