Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Mileage Claim Formula | New Users to Excel | |||
I want a template for shared rent expenses | New Users to Excel | |||
Inflation Adjustment | Excel Discussion (Misc queries) | |||
Template to track credit card expenses and expense reports combi | Excel Discussion (Misc queries) | |||
Pie Chart- Expenses | Charts and Charting in Excel |