Writing formula for calculation

Exceldummy2018

New Member
Joined
Apr 30, 2018
Messages
2
I need to compute a table, but I am not sure on how to write the formula.

For example,
Sales price: 10Mil

For first 1mil the tiered rate is 1%
The next 1 mil the tiered rate is 0.8%
The next 3 mil the tiered rate is 0.7%
The next 3 mil the tiered rate is 0.6%
Thereafter the tiered rate is 0.5%.

By input 10Mil into the cell for sales price, it will automatically compute the tiered price for each tier category and its respective payable amount. Need assistance here.
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Am not an expert in tiered pricing but try this
With A1 as the sales price

=SUMPRODUCT((A1>{0,1000000,2000000,5000000,8000000})*(A1-{0,1000000,2000000,5000000,8000000})*{.01,.08,.07,.06,.05})
 
Last edited:
Upvote 0

Excel 2010
BCDEFG
110,000,000.0067,000.00BracketRateRate_Diff
267,000.0001.00%1.00%
367,000.001,000,0000.80%-0.20%
42,000,0000.70%-0.10%
55,000,0000.60%-0.10%
68,000,0000.50%-0.10%
7a
Cell Formulas
RangeFormula
G2=F2-N(F1)
C1= SUMPRODUCT(--(B1>$E$2:$E$6),B1-$E$2:$E$6,G2:G6)
C2= SUMPRODUCT(--(B1>{0;1000000;2000000;5000000;8000000}),B1-{0;1000000;2000000;5000000;8000000},{0.01;-0.002;-0.001;-0.001;-0.001})
C3= SUMPRODUCT(--(B1>$E$2:$E$6),B1-$E$2:$E$6,{0.01;0.008;0.007;0.006;0.005}-{0;0.01;0.008;0.007;0.006})
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,399
Latest member
alchavar

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