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 ?
 

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)


THAT'S AMAZING! CAN YOU EMAIL ME THE ACTUAL SPREADSHEET?
You are very welcome!
This is my first time posting here, can I provide feedback or how does that work?
 
Upvote 0

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
"can you email me the spreadsheet with the SUMPRODUCT table & formula? "

You can copy the information from the post
You may have to add the formulas that are shown.
 
Upvote 0
I'm so sorry, I just realized I had a typo on the last tier - how do I fix the formula if the last tier is supposed to be $1,000,000 - $5,000,000 ?
You shouldn't need to fix it. It will calculate either way. If you do not want it to calculate above $5,000,000, then I can edit it to say something like "Oops, that is to big to chew" or something similar.
 
Upvote 0
You shouldn't need to fix it. It will calculate either way. If you do not want it to calculate above $5,000,000, then I can edit it to say something like "Oops, that is to big to chew" or something similar.

That would be funny! But not necessary, it would be great to get an account greater than $5M!!! Thanks again for everything, I really appreciate all your hard work on this ;) In this forum, do you rate people's answers or anything?
 
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})
Dave - should the first SUMPRODUCT formula for the table have C2 in it which is blank?
 
Upvote 0
What is your concern about a cell such as C2 being blank?

You can copy the posted information to a blank sheet.
I added an arithmetic version.

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
10or2,893.58
11or2,893.58
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)
E11E11=(D9>1000000)*(D9-1000000)*0.00175+(D9>500000)*MIN(500000,D9-500000)*0.002+(D9>250000)*MIN(250000,D9-250000)*0.003+(D9>100000)*MIN(150000,D9-150000)*0.0035+(D9>0)*MIN(100000,D9-0)*0.004
 
Upvote 0
What is your concern about a cell such as C2 being blank?

You can copy the posted information to a blank sheet.
I added an arithmetic version.

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
10or2,893.58
11or2,893.58
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)
E11E11=(D9>1000000)*(D9-1000000)*0.00175+(D9>500000)*MIN(500000,D9-500000)*0.002+(D9>250000)*MIN(250000,D9-250000)*0.003+(D9>100000)*MIN(150000,D9-150000)*0.0035+(D9>0)*MIN(100000,D9-0)*0.004

Thank you! I copied it over & it works perfectly, thanks again, much appreciated! ;)
 
Upvote 0

Forum statistics

Threads
1,215,741
Messages
6,126,608
Members
449,321
Latest member
syzer

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