Basic Future Value Formula & Interest Rate Formula

G

Guest

I need to figure out how to do two functions, the basic future value and the
basic interest rate formula. All I can find are annuity formulas where you
need to enter in a payment, but that is not what I need as there are no
payments.

Example 1 (Future Value): Such as on a financial calculator all I need to
enter would be the Present Value, the Interest Rate, and the # of Years to
find the future value.

Example 2 (Interest Rate): Again on a financial calculator where I would
only need to enter the Present Value, the Future Value, and the # of Years to
find what the interest rate or rate of return would be.

Thanks.
 
J

joeu2004

Peter said:
I need to figure out how to do two functions, the basic future value and the
basic interest rate formula. All I can find are annuity formulas where you
need to enter in a payment, but that is not what I need as there are no
payments.

Enter zero for the payment parameter.

Example 1 (Future Value): Such as on a financial calculator all I need to
enter would be the Present Value, the Interest Rate, and the # of Years to
find the future value.

=fv(a1, a2, 0, -a3)

where A1 is the annual interest rate, A2 is the number of years, and A3
is the present value. Note: This assumes annual compounding
frequency.
Example 2 (Interest Rate): Again on a financial calculator where I would
only need to enter the Present Value, the Future Value, and the # of Years to
find what the interest rate or rate of return would be.

=rate(a2, 0, -a3, a4)

where A2 and A3 are as above, and A4 is the future value. Caveat:
Sometimes RATE() returns an error (#NUM!) if it cannot guesstimate the
interest rate. See the RATE() Help page to learn about the "guess"
parameter.
 
J

joeu2004

PS....
=fv(a1, a2, 0, -a3)

where A1 is the annual interest rate, A2 is the number of years, and A3
is the present value.

I should have said "present value as a positive number". Often, the PV
is represented as a negative number. In that case, you want "a3", not
"-a3" above.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top