Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi! I know there is probably a simple answer to this question, but I'm
having a hard time finding it. I am trying to create a formula so that I can enter the following information: Purchase date, purchase price and average appreciation (%) to assess the current value based only on the appreciation. The appreciation increases the property's value at the end of each year, so I need the sheet to calculate the amount and compound it annually for the number of years the property is owned. I hope this makes sense. If anyone has direction for this, I'd greatly appreciate it. Thanks a million! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Sun, 15 May 2005 16:31:02 -0700, Mar wrote:
Hi! I know there is probably a simple answer to this question, but I'm having a hard time finding it. I am trying to create a formula so that I can enter the following information: Purchase date, purchase price and average appreciation (%) to assess the current value based only on the appreciation. The appreciation increases the property's value at the end of each year, so I need the sheet to calculate the amount and compound it annually for the number of years the property is owned. I hope this makes sense. If anyone has direction for this, I'd greatly appreciate it. Thanks a million! You can look at the FV worksheet function: =FV(appreciation,NumYears,0,purchase_price) This will give a number with the sign opposite to that of the sign of purchase_price, so you may want to add a negative sign someplace. The basic formula is: =purchase_price*(1+appreciation)^NumYears Depending on exactly when you book the appreciation, you might compute NumYears as =DATEDIF(purchase_date,valuation_date,"y") --ron |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ron-
THANK YOU VERY MUCH! This was so helpful! I really appreciate it. :) Martha "Ron Rosenfeld" wrote: On Sun, 15 May 2005 16:31:02 -0700, Mar wrote: Hi! I know there is probably a simple answer to this question, but I'm having a hard time finding it. I am trying to create a formula so that I can enter the following information: Purchase date, purchase price and average appreciation (%) to assess the current value based only on the appreciation. The appreciation increases the property's value at the end of each year, so I need the sheet to calculate the amount and compound it annually for the number of years the property is owned. I hope this makes sense. If anyone has direction for this, I'd greatly appreciate it. Thanks a million! You can look at the FV worksheet function: =FV(appreciation,NumYears,0,purchase_price) This will give a number with the sign opposite to that of the sign of purchase_price, so you may want to add a negative sign someplace. The basic formula is: =purchase_price*(1+appreciation)^NumYears Depending on exactly when you book the appreciation, you might compute NumYears as =DATEDIF(purchase_date,valuation_date,"y") --ron |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Tue, 17 May 2005 10:44:20 -0700, Mar wrote:
Ron- THANK YOU VERY MUCH! This was so helpful! I really appreciate it. :) Martha Glad it worked. Thank you for the feedback. --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Countif function to show how often numbers within a range are pres | Excel Worksheet Functions | |||
"Appreciation is a wonderful thing... | Excel Discussion (Misc queries) | |||
Excel 2003 inserts quotes when saving SS as text and comma is pres | Excel Discussion (Misc queries) | |||
A note of appreciation | New Users to Excel | |||
Is there a Function for Appreciation | Excel Worksheet Functions |