Notion Calculation: Find Compound Annual Growth Rate

Screen Shot 2020-07-24 at 1.10.55 PM.png

🕓 Find CAGR

I like to discover to what bounds Notion can offer in regards to calculations. It’s certainly not a spreadsheet and has its limitations (especially for finance), but it is capable of linear calculations (by row). Column data cannot be used in formulas as of yet. Here is how you can find the compound annual growth of an investment using this short formula. Used in this tutorial are the functions Round and Pow.

What Is Compound Annual Growth?

CAGR is the annual return on investment that is required for growth from initial investment to an end value.

The Scenario

A company's year end revenue over a 7 year period wants to determine its CAGR. The original investment started at $1,000 in 2013 and ended at $30,000 in 2020.

Notion Formula

round(10000 * (pow(prop("End Value") / prop("Start Value"), 1 / prop("Years")) - 1)) / 10000

Screen Shot 2020-07-24 at 4.15.31 PM.png

Breakdown

Screen Shot 2020-07-24 at 3.42.41 PM.png

The equation from above: pow(prop("Goal Value") / prop("Start Value"), 1 / prop("Years")) - 1))

  • Divide final value and starting value: prop("End Value") / prop("Start Value")

  • Return above to exponent power: pow(prop("End Value") / prop("Start Value"), 1 / prop("Years"))

  • Subtract 1: - 1))

Round the result: round(10000 * (pow(prop("End Value") / prop("Start Value"), 1 / prop("Years")) - 1)) / 10000

View Example In Notion