RRI Function in Excel

This guide treats “rri function in excel” the way busy spreadsheet users actually want it: answer first, a live tool to prove it on your own data, then the reasoning. It is written for Excel but calls out every place Google Sheets differs, and the platform toggle at the top switches all shortcuts between Windows and Mac so nothing here assumes the keyboard you are not on.

Exact answer

In Excel: use =RRI(nper, pv, fv) — it returns the equivalent growth rate per period, which is exactly the CAGR when the periods are years.

On this page8

Syntax

=RRI(nper, pv, fv)

Arguments

Argumentrequired / optionalDescription
nperrequiredNumber of periods over which growth happened.
pvrequiredStarting value.
fvrequiredEnding value.

Related functions

RATEFVPV
ƒxCAGR CalculatorLive
Compound annual growth rate
7.00%

€10,000.00 → €19,672.00 over 10 years

Year 0Year 10
=(Ending/Beginning)^(1/Years)-1

Need it as an auditable file?

This calculation ships inside the Corporate Finance Suite — formula-driven, unlocked, audit-ready.

View template
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

RRI computes the constant rate that turns a starting value into an ending value over a given number of periods. When the periods are years that is precisely the compound annual growth rate, which makes RRI the shortest CAGR formula available — a single call instead of the =POWER(end/start, 1/years)-1 idiom. It assumes smooth compounding and reports the equivalent rate, not the actual path, so a series that fell and then recovered reports the same figure as one that rose steadily. Both values must be positive. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. Treat “rri function in excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.

A worked example

Revenue growing from 120,000 to 195,000 over 4 years: =RRI(4, 120000, 195000) returns about 12.9 %. The longhand equivalent, =POWER(195000/120000, 1/4)-1, gives the same number with more room for a bracketing error. RRI is CAGR in one function call, which removes the two places the longhand version usually goes wrong. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Treat “rri function in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.

Common mistakes

  • Reading RRI as the actual per-period growth; it is the smooth equivalent, not the real path.
  • Passing zero or a negative starting value, which returns an error.
  • Counting periods rather than intervals — four annual figures span three years of growth, not four.

Frequently asked questions

Is RRI the same as CAGR?

Yes, when the periods are years. =RRI(years, start, end) is the compound annual growth rate.

How many periods should I use?

The number of intervals, not data points. Values for 2022 through 2026 span four years of growth.

Why is RRI easier than the POWER formula?

It takes the three inputs directly, with no fractional exponent to bracket and no -1 to remember.