Excel formula to modify the percentages (say discount) so that final sum after the discount is within the budget

Himaja

Board Regular
Joined
Oct 14, 2013
Messages
62
After applying discounts (x%,2x%,3x%) to premium, the final discounted premium price is 1.1 million. But maximum final discounted premium price that I can give is 1 Million. Now, how to adjust the discounts (x%,2x%,3x%), so that my final discounted prices is exactly 1M


Note: I have to use only these 3 discounts x%, 2x%, 3x%
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Your information is not very clear.

=min(1000000,your formula)
 
Upvote 0
Hi Himaja,

Here is one way:

Himaja.xlsx
CDEFGHIJ
1Premiumxx%2x%3x%Max
2$7,000,00010.00%10.00%20.00%30.00%$1,000,000
3
4Initial Discount
5$4,200,000
6
7Initial Discounted Premium
8$2,800,000
9
10Final Discounted Premium
11$1,000,00014.29%14.29%28.57%42.86%
Sheet1
Cell Formulas
RangeFormula
F2,F11F2=D2
G2,G11G2=2*F2
H2,H11H2=3*F2
C5C5=(C2*(SUM(F2:H2)))
C8C8=C2-C5
C11C11=IF(C8>J2,C2-(C2*(SUM(F11:H11))),C8)
D11D11=IF(C8>J2,((C2-J2)/C2)/6,D2)
 
Upvote 0
Hi Himaja,

Here is one way:

Himaja.xlsx
CDEFGHIJ
1Premiumxx%2x%3x%Max
2$7,000,00010.00%10.00%20.00%30.00%$1,000,000
3
4Initial Discount
5$4,200,000
6
7Initial Discounted Premium
8$2,800,000
9
10Final Discounted Premium
11$1,000,00014.29%14.29%28.57%42.86%
Sheet1
Cell Formulas
RangeFormula
F2,F11F2=D2
G2,G11G2=2*F2
H2,H11H2=3*F2
C5C5=(C2*(SUM(F2:H2)))
C8C8=C2-C5
C11C11=IF(C8>J2,C2-(C2*(SUM(F11:H11))),C8)
D11D11=IF(C8>J2,((C2-J2)/C2)/6,D2)

Hi Toad,

Thank you for your reply. But my sheet looks like this where I have multiple rows.
 

Attachments

  • sample_qstn.png
    sample_qstn.png
    70.7 KB · Views: 7
Upvote 0
N.B. You can post an extract of your information with XL2BB. (see add-on highlighted at the right of this message).
If the extract is too large, you could prepare a concise example complete with expected result.
 
Upvote 0
O.K.
I did also state
If the extract is too large, you could prepare a concise example complete with expected result.
End
 
Upvote 0
I got the result. I used Data Analysis - What IF Analysis to accomplish that. Thanks a lot for your time
 
Upvote 0

Forum statistics

Threads
1,216,108
Messages
6,128,872
Members
449,475
Latest member
Parik11

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