The Excel formulas economics students use for assignments, dissertations, and economic data analysis.
=(new_value - old_value) / old_value
=(B3 - B2) / B2
-- GDP growth from one year to the next
-- Format as percentage=(B3/B2) - 1
-- Equivalent to the above, slightly cleaner
-- Drag down to calculate growth for every year in a series=(end_value / start_value)^(1/years) - 1
=(B10/B2)^(1/8) - 1
-- CAGR over 8 years (B2=start, B10=end)
-- Answers: "what steady annual rate would produce this total growth?"=(current_price / base_price) * 100
=(B3 / $B$2) * 100
-- $B$2 locks the base year price
-- Drag down to calculate index for every period=nominal_value / (price_index / 100)
=B3 / (C3/100)
-- Convert nominal GDP to real GDP using price index in column C=((Q2-Q1)/Q1) / ((P2-P1)/P1)
=((C3-C2)/C2) / ((B3-B2)/B2)
-- % change in quantity / % change in price
-- Negative = normal good, Positive = Giffen good=SUMPRODUCT(prices_range, weights_range) / SUM(weights_range)
-- Weighted average price
-- Used in CPI and other composite price indicesWorld Bank, IMF, and OECD all offer data downloads as CSV or Excel files. Download directly, paste into Excel, and use the formulas above. For UK data, ONS offers Excel downloads on almost every statistical release.
Practice these formulas in the Students track โ built for university assignments and graduate job assessments. Free to start.
Start the Students track free โ