The RATE function takes six separate arguments, three of which are required as explained below. nper (required) - The total number of payment periods in the annuity. For example, a 5-year car loan with monthly payments has 60 periods. You can enter nper as 5*12 to show how the number was determined. pmt (required) - The payment made each period. This number cannot change over the life of the annuity. In annuity functions, cash paid out is represented by a negative number. Note: If pmt is not provided, the optional fv argument must be supplied. pv (optional) - The present value. This is the cash balance required after all payments have been made.  fv (optional) - The future value, or a cash balance required after the last payment is made. When fv is omitted, it defaults to zero (0) and pmt must be provided. type (optional) - type is a boolean that controls when when payments are due. Use 0 for payments due at the end of the period (regular annuities) and 1 for payments due at the end of the period (annuities due). Type defaults to 0 (end of period). guess (optional) - guess is a seed value to use for iteration. When omitted, guess defaults to 10%. Ordinarily, you can safely omit guess. If RATE does not converge, RATE will return a #NUM! error. Try different values for guess between 0 and 1.

Example

To calculate the annual interest rate for a $5000 loan with payments of $93.22 per month over 5 years, you can use RATE in a formula like this: In the example shown, the formula in C10 is: Notice the value for pmt from C6 is entered as a negative value.

Notes

You must use consistent values for for guess and nper. If you make monthly payments on a five-year loan at 10 percent annual interest, use 10%/12 for guess and 5*12 for nper. If you make annual payments on the same loan, use 10% for guess and 5 for nper.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.