Cumulative Inflation Impact on Unit Price

SerenityNetworks

Board Regular
Joined
Aug 13, 2009
Messages
131
Office Version
  1. 365
Platform
  1. Windows
I'm looking for a formula that gives me an average unit price value that considers annual inflation. For example:
Inflation is 2%
Year 1, Unit Price is 100.00
Year 2, Unit Price is 102.00 { =100*1.02 } for an average unit price of 101 { =(100+(100*1.02))/2 }.
Year 3, Unit Price is 104.04 { =102*1.02 } for an average unit price of 102.01 { =((100+(100*1.02))+(100*1.02*1.02))/3 }.
Year 4, Unit Price is 106.12 with the formula for the average growing to { =(100+(100*1.02)+(100*1.02*1.02)+(100*1.02*1.02*1.02))/4 }

I can keep expanding the formula. I only need to calculate it (this time) to get an average unit price for 5 years and 10 years. But I'm thinking there must be a formula more streamlined. I'm just at a loss as to how it might be constructed.

Any help would be greatly appreciated.

Thank you in advance,
Andrew

PS: Yes, I know I can shorten it using the power function, such as { =(100+(100*1.02)+(100*1.02^2)+(100*1.02^3)+(100*1.02^4))/5 } to get to year 5, but still it seems to me there is likely an easier way.
 
Last edited:

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Excel has a special function for this, the SERIESSUM.

Your =(100+(100*1.02)+(100*1.02*1.02)+(100*1.02*1.02*1.02))/4 can be calculated as follows:

=100*SERIESSUM(1.02,0,1,{1,1,1,1})/4
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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