Finding Unit Cost from a Tiered Rebate

zzer0

New Member
Joined
Oct 23, 2023
Messages
6
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am looking to find the final unit cost for a product given a volume rebate.

In the below rebate structure, base unit cost is discounted based on volume, in which there is a 27.5% discount for sales up to 99, a 32.6% discount on 100-249, 37.5% on 250-499 etc etc.

1698094984579.png


I am looking for a formula to calculate the cumulative rebate for x units sold that I can then extrapolate to the final unit cost.

Thanks in advance.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
This might do until a more elegant solution comes along...
Book1
ABCDEF
1Units sold248
2Base units cost$5.97
3Total cost (w/o rebate)$1,480.56
4Cumulative rebate$454.47
5Total cost (w/ rebate)$1,026.09
6Final unit cost$4.14
7
8StartEndDiscountRebate
919927.5%$ 162.53
1010024932.6%$ 291.93
1125049937.5%$ -
1250099942.5%$ -
131000149948.1%$ -
1415001000051.1%$ -
Sheet1
Cell Formulas
RangeFormula
B3B3=IFERROR(B1*B2,0)
B4B4=SUM(F9:F14)
B5B5=IFERROR(B3-B4,0)
B6B6=IFERROR(B5/B1,0)
F9F9=IF($B$1>=D9,B2*D9*E9,B2*E9*B1)
F10:F14F10=IF($B$1>=D9,(D10-D9)*$B$2*E10,0)
 
Upvote 0

Forum statistics

Threads
1,215,090
Messages
6,123,061
Members
449,091
Latest member
ikke

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