Skip to content
Google Sheets

RRI function in Google Sheets

Returns the interest rate needed for an investment to reach a specific value within a given number of periods. .

=RRI(number_of_periods, present_value, future_value)

RRI syntax and parameters

Three arguments, three required.

  • number_of_periodsnumberRequired
  • present_valuenumberRequired
  • future_valuenumberRequired

RRI examples

Formulas you'll actually reuse.

  1. The yearly rate that doubles $10,000 in 10 years — a CAGR:

    =RRI(10, 10000, 20000)

    Result0.0718

  2. Compound annual growth of revenue from B2 to C2 over five years:

    =RRI(5, B2, C2)

    Result0.1247

RRI in Excel

Same name — your formula ports as-is.

Try RRI in the playground

Edit the example — nothing to install.

Preloaded with the RRI formula from Example 1 — change anything and watch it respond.

Loading the editor…