I wonder if someone more familiar with Excel could tell me the name of the
financial function to solve the following problem:
I invest $1,000 and 20 year later have $56,000. What was the annual rate of
return?
Many thanks!
The formula is
=RATE(20,0,-1000,56000,0)
and the answer is 22%.
Mike Anas
http://mikeanas.googlepages.com/
From Excel's help library:
Returns the interest rate per period of an annuity. RATE is calculated
by iteration and can have zero or more solutions. If the successive
results of RATE do not converge to within 0.0000001 after 20
iterations, RATE returns the #NUM! error value.
Syntax
RATE(nper,pmt,pv,fv,type,guess)
For a complete description of the arguments nper, pmt, pv, fv, and
type, see PV.
Nper is the total number of payment periods in an annuity.
Pmt is the payment made each period and cannot change over the life
of the annuity. Typically, pmt includes principal and interest but no
other fees or taxes. If pmt is omitted, you must include the fv
argument.
Pv is the present value -- the total amount that a series of future
payments is worth now.
Fv is the future value, or a cash balance you want to attain after
the last payment is made. If fv is omitted, it is assumed to be 0 (the
future value of a loan, for example, is 0).
Type is the number 0 or 1 and indicates when payments are due.
Set type equal to If payments are due
0 or omitted At the end of the period
1 At the beginning of the period
Guess is your guess for what the rate will be.
If you omit guess, it is assumed to be 10 percent.
If RATE does not converge, try different values for guess. RATE
usually converges if guess is between 0 and 1.