• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Finance Gurus - I need a formula

GasX

Lifer
I have the value you an investment for each year in the future and I want to calculate the annualized rate of return for each year.

i.e

Year 1: $1.00
Year 2: $1.75 (intuitively it is 75% for year 1)
Year 3: $3.06

I have several series to calculate for. Anyone have any ideas?
 
You're looking for a formula for compounding interest, right?

You're not making any additional deposits, right? (If you were, then you'd need the future value of an annuity.)

Well then, a google search on "compound interest formula" gets you here.
 
Originally posted by: Mwilding
right, but what is the excel formula for r?

IRR, but you have to make the initial investment a negative number, then put in the cash flows, and account for the recovery.

so cell A1 = -1 (cash outlay)
cell A2 = .75 (interest earned)
cell A3 = 3.06 (2.06 interest + 1 principle recovery)

Cell A4 formula is: =IRR (A1:A3)

Make sense?

PS - need some more puppy pix (sure he's getting huge!)

😎
 
Originally posted by: Mwilding
right, but what is the excel formula for r?

R is your interest rate. In your case it is 75%.

Set up the following cells:

Principal
Interest Rate
N
Number of Years

then the final cell, Amount, is the formula

= Pricipal(1+(Interest Rate/N))^((N)(Number of Years))

 
Back
Top