SUMPRODUCT formula & chart for blended tier pricing

tammyanthos

New Member
Joined
Apr 6, 2020
Messages
36
Office Version
  1. 365
Platform
  1. Windows
Blended tier pricing

I need to create a chart and formula that calculates what the price = based on the $ amount of the account

e.g. accounts up to $100k = .50, $100k-$250k = .60, etc. so an account of $175k would be.50 for the first $100k and .60 for the other $75k ?
 
Thank you!
I tried the new formula for $1,124,900 and the answer should be $2894 and .257% (I did it the math the long way in bold to the right) but for some reason it's giving $2024.82 and .18%
1586222338471.png
 
Upvote 0

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
I show the Sumproduct formula; one uses the Rate table and the other includes the table information within the formula.

T202004a.xlsm
ABCDE
1TiersBps%260,000.00955.00
2
30400.4000%
4100,000350.3500%
5250,000300.3000%
6500,000200.2000%
71,000,00017.50.1750%
8
91,124,900.002,893.58
10
2b
Cell Formulas
RangeFormula
E1E1=SUMPRODUCT(--(D1>A3:A7),D1-A3:A7,C3:C7-C2:C6)
E9E9=SUMPRODUCT(--(D9>{0;100000;250000;500000;1000000}),D9-{0;100000;250000;500000;1000000},{0.004;-0.0005;-0.0005;-0.001;-0.00025})
 
Upvote 0
Does this work?
Code:
=IF(D1>100000,IF(D1<=250000,100000*0.4%+(((D1-150000))*0.35%),IF(D1<=500000,(((100000*0.4%)+((150000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+((D1-500000)*0.2%),(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+(500000*0.2%)+((D1-1000000)*0.175%)))),(D1*0.4%))
 
Upvote 0
T202004a.xlsm
ABCDEFG
1TiersBps%260,000.00955.00
2
30400.4000%
4100,000350.3500%400.00400.00
5250,000300.3000%525.00525.00
6500,000200.2000%30.00750.00
71,000,00017.50.1750%1,000.00
8218.58
91,124,900.002,893.58955.002,893.58
102,893.58
11
2b
Cell Formulas
RangeFormula
E1E1=SUMPRODUCT(--(D1>A3:A7),D1-A3:A7,C3:C7-C2:C6)
F4:F5F4=(A4-A3)*C3
F6F6=(D1-A5)*C5
G4:G7G4=(A4-A3)*C3
G8G8=(D9-A7)*C7
F9:G9F9=SUM(F4:F8)
E9E9=SUMPRODUCT(--(D9>{0;100000;250000;500000;1000000}),D9-{0;100000;250000;500000;1000000},{0.004;-0.0005;-0.0005;-0.001;-0.00025})
E10E10=SUMPRODUCT(--(D9>A3:A7),D9-A3:A7,C3:C7-C2:C6)
 
Upvote 0
I show the Sumproduct formula; one uses the Rate table and the other includes the table information within the formula.

T202004a.xlsm
ABCDE
1TiersBps%260,000.00955.00
2
30400.4000%
4100,000350.3500%
5250,000300.3000%
6500,000200.2000%
71,000,00017.50.1750%
8
91,124,900.002,893.58
10
2b
Cell Formulas
RangeFormula
E1E1=SUMPRODUCT(--(D1>A3:A7),D1-A3:A7,C3:C7-C2:C6)
E9E9=SUMPRODUCT(--(D9>{0;100000;250000;500000;1000000}),D9-{0;100000;250000;500000;1000000},{0.004;-0.0005;-0.0005;-0.001;-0.00025})
I show the Sumproduct formula; one uses the Rate table and the other includes the table information within the formula.

T202004a.xlsm
ABCDE
1TiersBps%260,000.00955.00
2
30400.4000%
4100,000350.3500%
5250,000300.3000%
6500,000200.2000%
71,000,00017.50.1750%
8
91,124,900.002,893.58
10
2b
Cell Formulas
RangeFormula
E1E1=SUMPRODUCT(--(D1>A3:A7),D1-A3:A7,C3:C7-C2:C6)
E9E9=SUMPRODUCT(--(D9>{0;100000;250000;500000;1000000}),D9-{0;100000;250000;500000;1000000},{0.004;-0.0005;-0.0005;-0.001;-0.00025})
 
Upvote 0
To correct a small typo:
Code:
=IF(D1>100000,IF(D1<=250000,100000*0.4%+((D1-100000)*0.35%),IF(D1<=500000,(((100000*0.4%)+((150000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+((D1-500000)*0.2%),(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+(500000*0.2%)+((D1-1000000)*0.175%)))),(D1*0.4%))
 
Upvote 0
Does this work?
Code:
=IF(D1>100000,IF(D1<=250000,100000*0.4%+(((D1-150000))*0.35%),IF(D1<=500000,(((100000*0.4%)+((150000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+((D1-500000)*0.2%),(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+(500000*0.2%)+((D1-1000000)*0.175%)))),(D1*0.4%))
 
Upvote 0
To correct a small typo:
Code:
=IF(D1>100000,IF(D1<=250000,100000*0.4%+((D1-100000)*0.35%),IF(D1<=500000,(((100000*0.4%)+((150000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+((D1-500000)*0.2%),(100000*0.4%)+(150000*0.35%)+(250000*0.3%)+(500000*0.2%)+((D1-1000000)*0.175%)))),(D1*0.4%))


YES!!! THANK YOU SO MUCH FOR ALL YOUR HARD WORK!!!
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

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