RATE Function

The RATE function in Excel is used to calculate the interest rate per period of an annuity. This function is particularly useful for financial analysis, such as determining the interest rate of a loan, an investment, or any other financial arrangement involving periodic payments.

Syntax

The syntax for the RATE function is as follows:

ArgumentDescription
=RATE(nper, pmt, pv, [fv], [type], [guess])Calculates the interest rate per period of an annuity.

nper: The total number of payment periods.
pmt: The payment made each period; it cannot change over the life of the annuity.
pv: The present value, or the total amount that a series of future payments is worth now.
fv: (Optional) The future value, or a cash balance you want to attain after the last payment is made. If omitted, defaults to 0.
type: (Optional) Indicates when payments are due: 0: End of period (default). 1: Beginning of period.
guess: (Optional) Your guess for what the rate will be. If omitted, Excel assumes 10% (0.1).

Example

Let's consider a scenario where you have taken a loan of $10,000, which you plan to repay over 5 years with monthly payments of $200. You want to find out what the interest rate on this loan is.

Loan Amount (PV)Payment (PMT)Number of Periods (NPER)Future Value (FV)
$10,000$20060$0

In this case, you would use the RATE function to find the monthly interest rate:

=RATE(60, -200, 10000)

This formula calculates the interest rate per period (month) for the loan.

Practice Exercise 1

Task: Calculate the monthly interest rate for a car loan where the car costs $15,000, the monthly payment is $300, and the loan term is 5 years.

Practice Exercise 2

Task: Determine the quarterly interest rate for an investment where you deposit $20,000 today, and plan to withdraw $25,000 after 8 years with no additional deposits.

Solution for Exercise 1:

To calculate the monthly interest rate for the car loan, use the following formula:

=RATE(60, -300, 15000)

This formula calculates the interest rate per period (month) for the car loan, assuming payments are made at the end of each period.

Solution for Exercise 2:

To determine the quarterly interest rate for the investment, use the following formula:

=RATE(32, 0, -20000, 25000)

This formula calculates the interest rate per period (quarter) for the investment, assuming no additional payments are made and the final withdrawal is $25,000 after 32 quarters (8 years).