Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Cumulated expenses with inflation.

Hi,

I want to calculate expenses over a period of times.

My inputs are :
- Initial Expense (P[0])
- Number of month (n)

Currently I do not take inflation into acount so my formula is just:

Total Expense : S[n] = P[0]*n

Now, if I want to take inflation into account, my expenses would
increase for each period.
So I have one more input : R is the monthly inflation rate.

So the expense each month is : P[i]=P[i-1]*(1+R)=P[0]*(1+R)^i

An my total expense is S[n] = Sum(P[i],i=0..n) = P[0]*Sum((1+R)^i,
i=0..n)

How do I translate this in a Excel formula ?

Thank you

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 623
Default Cumulated expenses with inflation.

Yes, it's called FV (for future value). It will calculate exactly what you want.

=fv(rate,n,p[0],p[0])

Remember the period for rate and n must match, so the rate specified must be a
monthly rate.

--
Regards,
Fred


wrote in message
ups.com...[i]
Hi,

I want to calculate expenses over a period of times.

My inputs are :
- Initial Expense (P[0])
- Number of month (n)

Currently I do not take inflation into acount so my formula is just:

Total Expense : S[n] = P[0]*n

Now, if I want to take inflation into account, my expenses would
increase for each period.
So I have one more input : R is the monthly inflation rate.

So the expense each month is : P[i]=P[i-1]*(1+R)=P[0]*(1+R)^i

An my total expense is S[n] = Sum(P,i=0..n) = P[0]*Sum((1+R)^i,
i=0..n)

How do I translate this in a Excel formula ?

Thank you



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default Cumulated expenses with inflation.

wrote:[i]
I want to calculate expenses over a period of times.
My inputs are :
- Initial Expense (P[0])
- Number of month (n)
[....]
Now, if I want to take inflation into account, my expenses would
increase for each period.
So I have one more input : R is the monthly inflation rate.
[....]
An my total expense is S[n] = Sum(P,i=0..n) = P[0]*Sum((1+R)^i,
i=0..n)


How do I translate this in a Excel formula ?


First, I would not account for inflation on monthly basis. One
approach is to apply the annual inflation rate to the year-over-year
monthly expenses. For example, if the annual inflation rate for 2006
is 4%, your January 2007 expenses might be about 4% higher than your
January 2006 expenses.

Second, there is the issue of which inflation rate to apply to which
expenses. Although you can get away with applying the same "consumer"
inflation rate to most expenses (although you could refine that by
using other price indexes), you should use different inflation rates to
account for education and medical costs, at the very least, if those
are applicable.

Of course, I realize I might be adding too much the problem statement,
since this sounds like a homework assignment.

In any case, the answer to your question is:

=fv(n, r, 0, -P[0])

where "n" is the number of compounding periods (years or months) and
"r" is the inflation rate for each period (annual or monthly
respectively). "P[0]" is your term for the initial expense. Note that
I negate it so that FV() returns a positive number.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default Cumulated expenses with inflation.

Errata....

I wrote:
=fv(n, r, 0, -P[0])


Oops, got my "n" and "r" mixed up. The correct formula that
corresponds to yours (P[0]*Sum((1+R)^i, i=0..n)) is:

=fv(r, n, 0, -P[0])

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Cumulated expenses with inflation.

Hum... funny I was looking at FV, but it only seemed to me that this
was used to calculate the final value of an investement with constant
payments...

Now I see that it actually is the same thing... my math is rusty...

Thanks



Fred Smith wrote:[i]
Yes, it's called FV (for future value). It will calculate exactly what you want.

=fv(rate,n,p[0],p[0])

Remember the period for rate and n must match, so the rate specified must be a
monthly rate.

--
Regards,
Fred


wrote in message
ups.com...[i]
Hi,

I want to calculate expenses over a period of times.

My inputs are :
- Initial Expense (P[0])
- Number of month (n)

Currently I do not take inflation into acount so my formula is just:

Total Expense : S[n] = P[0]*n

Now, if I want to take inflation into account, my expenses would
increase for each period.
So I have one more input : R is the monthly inflation rate.

So the expense each month is : P=P[i-1]*(1+R)=P[0]*(1+R)^i

An my total expense is S[n] = Sum(P,i=0..n) = P[0]*Sum((1+R)^i,
i=0..n)

How do I translate this in a Excel formula ?

Thank you


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mileage Claim Formula johndavies New Users to Excel 4 August 14th 06 09:24 AM
I want a template for shared rent expenses please help me find a proper template New Users to Excel 1 December 13th 05 10:01 PM
Inflation Adjustment dimitmant Excel Discussion (Misc queries) 1 November 17th 05 09:06 AM
Template to track credit card expenses and expense reports combi sunshinelover Excel Discussion (Misc queries) 2 August 18th 05 02:58 AM
Pie Chart- Expenses coal_miner Charts and Charting in Excel 1 June 9th 05 05:01 PM


All times are GMT +1. The time now is 12:41 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"