Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Present Value calculation by single function 1

Status
Not open for further replies.

Tonyjstone

Technical User
Aug 17, 2002
33
GB
I have been asked to provide a single cell function that will enable a calculation to show "the Present Value of a Single Fixed Investment which will yeild a given sum after 'x' years at 'y'percent interest"
None of the usual 'functions' seems to achieve my goal. What would you learned practitioners suggest?

Thanx
Tony
The more I learn the less I seem to know
 
Assuming compound interest, the formula you want is
[blue]
Code:
   =givensum/(1+y)^x
[/color]

So, for example, if the given sum is 10,000, the number of years is 15 and the interest rate is 8% per annum (compounded annually), the formula would look like this:
[blue]
Code:
   =10000/(1.08)^15
[/color]

and the answer would be [blue]
Code:
 3,152.42
[/color]

 
Many thanks. That seems to have solved the problem nicely.
Your generosity is much appreciated.

Tony
The more I learn the less I seem to know
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top