incremental percentage reduction

Sirod

New Member
Joined
Aug 6, 2009
Messages
47
Hello all,

I'm looking to create a formula that will decrease a percentage applied each year by a 2.5%. For example, to start or year 0, 50% is applied. In Year 1 this is reduced 2.5% to 47.5%, in year 2 there is a further reduction of 2.5% to 45%. This continues until the percentage applied reaches 25% (for 2.5% it happens to be 10 years, but at different percentages the number of years to reach 25% will change). Rather than manually type in the percentage applied for each year, I'd like to create a formula that will calculate the percentage for me.

Below is a snap shot of what my table needs to look like.

Year: YEAR 0 YEAR 1 YEAR 2 YEAR 3 YEAR 4 YEAR 5 YEAR 6 YEAR 7 YEAR 8 YEAR 9 YEAR 10
Percentage:50.00%47.50%45.00%42.50%40.00%37.50%35.00%32.50%30.00%27.50%25.00%
<colgroup><col width="84" style="width: 63pt; mso-width-source: userset; mso-width-alt: 3072;"> <col width="61" style="width: 46pt; mso-width-source: userset; mso-width-alt: 2230;" span="10"> <col width="65" style="width: 49pt; mso-width-source: userset; mso-width-alt: 2377;"> <tbody> </tbody>

Many thanks!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Here's What I've Got:


ABCDEFGHIJKL
1YearYear 0Year 1Year 2Year 3Year 4Year 5Year 6Year 7Year 8Year 9Year 10
2Percentage50.00%47.50%45.00%42.50%40.00%37.50%35.00%32.50%30.00%27.50%25.00%

<tbody>
</tbody>

All of my values are formatted as percentages with 2 decimal points.

The formula in C2 is

Code:
=IF(IF(B2>0.25,B2-0.025,B2)<0.25,0.25,IF(B2>0.25,B2-0.025,B2))

Then I applied that formula out through Year 30 (The max required for starting values 100% and below)
 
Last edited:
Upvote 0
Perhaps this:

Assuming Year 0 is Column B, then in Column C and copy to the right, also assuming you manually enter the % for Year 0:

=IF(B2<>"",MAX(B2-0.025,0.25),"")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,603
Messages
6,125,776
Members
449,259
Latest member
rehanahmadawan

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