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 ?
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Just as a note, .9% would be 90%% (not that you needed to know that anyway.
 
Upvote 0
Oh, I see. What percentages would be applied to 625,000? e.g.150,000*.5%, 250,000*.6%...?
 
Upvote 0
Oh, I see. What percentages would be applied to 625,000? e.g.150,000*.5%, 250,000*.6%...?

Like this:

1586203547843.png
 
Upvote 0
This should do the trick. Assuming your value to test is in D1...

Code:
=IF(D1>150000,IF(D1<=250000,TEXT(150000*0.5%+((D1-(D1-150000))*0.6%),"$#,000.00"),IF(D1<=500000,(TEXT(((150000*0.5%)+((((D1-150000-(D1-(250000+150000)))))*0.6%)+((D1-(250000+150000))*0.7%)),"$#,000.00")&"; Average Charge of: "&TEXT(AVERAGE(0.5%,0.6%,0.7%),"0.00%")),IF(D1<1000000,TEXT((150000*0.5%)+100000*0.6%+250000*0.7%+((D1-500000)*0.8%),"$#,000.00")&"; Average Charge of: "&TEXT(AVERAGE(0.5%,0.6%,0.7%,0.8%),"0.00%"),TEXT(D1*0.9%,"$#,000.00")&"; Average Charge of: 0.90%"))),TEXT(D1*0.5%,"$#,000.00"&"; Average Charge of: 0.50%"))
 
Upvote 0

Forum statistics

Threads
1,214,826
Messages
6,121,794
Members
449,048
Latest member
greyangel23

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