RRI Formula Excel

If you just need to rri formula excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

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. The same idea underpins a lot of everyday Excel work, so the few minutes spent getting it right here pay back across every sheet you build afterwards. Treat it as a pattern, not a one-off, and it stops being something you look up and starts being something you reach for. Treat “rri formula 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

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. 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. The short version of “rri formula excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

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.