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 ?
 
What is the rest of the result in D8?
 
Upvote 0

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
1586215791600.png
 
Upvote 0
1586216225151.png


Part of the result is hidden. What is the rest?
 
Upvote 0
Not the formula. The result is partially hidden. Expand the D column to 15.
 
Upvote 0
Okay. I see. Here try this formula in D8:
Code:
=IF(D1>150000,IF(D1<=250000,150000*0.4%+(((D1-150000))*0.35%),IF(D1<=500000,(((150000*0.4%)+((100000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(150000*0.4%)+100000*0.35%+250000*0.3%+((D1-500000)*0.2%),D1*0.18%))),D1*0.4%)

and this formula in D9:
Code:
=D8/D1
 
Upvote 0
Format D8 to Currency format; and D9 to Percentage format.
 
Upvote 0
Okay. I see. Here try this formula in D8:
Code:
=IF(D1>150000,IF(D1<=250000,150000*0.4%+(((D1-150000))*0.35%),IF(D1<=500000,(((150000*0.4%)+((100000)*0.35%)+((D1-(250000))*0.3%))),IF(D1<1000000,(150000*0.4%)+100000*0.35%+250000*0.3%+((D1-500000)*0.2%),D1*0.18%))),D1*0.4%)

and this formula in D9:
Code:
=D8/D1
 
Upvote 0

Forum statistics

Threads
1,215,488
Messages
6,125,092
Members
449,206
Latest member
ralemanygarcia

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