Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
example: I'm paying $1000 a month today. The amount increases by 3% each
year. I pay for 5 years. How much am i paying in total? is there a formula to calculate this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
=SUM(B8*12*1.03^{0,1,2,3,4}) where B8 contains the initial payment size. -- If this helps, please click the Yes button. Cheers, Shane Devenshire "JSC" wrote: example: I'm paying $1000 a month today. The amount increases by 3% each year. I pay for 5 years. How much am i paying in total? is there a formula to calculate this? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
A slightly more flexible version of my last suggestion: =SUM(B8*12*1.03^(ROW(1:5)-1)) -- If this helps, please click the Yes button. Cheers, Shane Devenshire "JSC" wrote: example: I'm paying $1000 a month today. The amount increases by 3% each year. I pay for 5 years. How much am i paying in total? is there a formula to calculate this? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is a basic compound interest problem:
=FV(3%,5,1000*12) Regards Fred "JSC" wrote in message ... example: I'm paying $1000 a month today. The amount increases by 3% each year. I pay for 5 years. How much am i paying in total? is there a formula to calculate this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
calculate PV of lump sum payment | Excel Worksheet Functions | |||
How do I calculate a payment? | Excel Worksheet Functions | |||
How could I calculate the monthly payment of GPM. | Excel Discussion (Misc queries) | |||
calculate payment | Excel Discussion (Misc queries) | |||
calculate payment with first payment due date variable? | Excel Worksheet Functions |