Creating a table with graduated rebate based on items purchased

James_8

New Member
Joined
May 22, 2012
Messages
14
I am trying to create a table for a customer based on an agreement we have where we will give a discount based on the purchase amount throughout the year.

Here are my parameters

Up to $10,000 0% discount
Between $10,000 and $25,000 3.5% discount
Between $25,000 and $50,000 5% discount
Between $50,000 and $100,000 7.5% discount
over $100,000 10% discount

These are made up numbers but this is essentially what I want to do. I would like to refer to a cell that sums the total purchased amount on the year and based on that it will compute applicable rebates at each level.

Please help
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
something like this? you enter the purchase amount in A2. Your limits and discounts are in the table. The total discount is in cell D10.

A function could be written to calculate and return the discount amount if you had a table of purchase amouts from different customers.


Excel 2010
ABCD
1Purchase Amt
2110000
3
4LimitsDiscountPortionDiscount
50-100000
6100000.03515000525
7250000.050250001250
8500000.075500003750
91000000.100100001000
10Tot Disc6525
Sheet1 (3)
Cell Formulas
RangeFormula
C5=IF($A$2-A5>0,$A$2-A5-SUM(C6:$C$10),0)
C6=IF($A$2-A6>0,$A$2-A6-SUM(C7:$C$10),0)
C7=IF($A$2-A7>0,$A$2-A7-SUM(C8:$C$10),0)
C8=IF($A$2-A8>0,$A$2-A8-SUM(C9:$C$10),0)
C9=IF($A$2-A9>0,$A$2-A9-SUM(C10:$C$10),0)
D5=B5*C5
D6=B6*C6
D7=B7*C7
D8=B8*C8
D9=B9*C9
D10=SUM(D5:D9)
 
Upvote 0
Thank you. I was able to get it to work. I'll try this way too to see if I can get it to work.
 
Upvote 0

Forum statistics

Threads
1,221,826
Messages
6,162,192
Members
451,752
Latest member
majbizzaki

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