Percent increase spread out over 12 months

erenkey

Board Regular
Joined
Dec 9, 2005
Messages
162
I need help with a formula that will help spread a percent increase over a 12 month period. Basically I am working on a budget template where I want to increase a number by an annual percentage but spread that increase over the entire 12 month period. Example:

I have a value of 100 and want to increase it by 30% over the next 12 months. I tried using =100*(1+(30%/12)) to get the number for the first month and then replace the 100 in the formula with the previous month number and drag it out 12 months but when I do that I get an increase of 34.5%. I want my total increase to only be 30%. Is there a way to do that with a formula?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
It sounds to me like you want to compound the monthly increase so that you have an annual increase of 30%. With 100 in A1, enter the following in A2 and copy down through A13:

=A1*(1+30%)^(1/12)

Note that as you copy down, A1 changes to A2, A3, etc. The result in A13 will be 130, 30% more than 100 (A1).

It is important not to explicitly round the intermediate results. But of course, you might format the cell to display only 2 decimal places.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,265
Members
449,219
Latest member
daynle

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