Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/Finance in FMCG/Key calculations, figures and benchmarks/Volume, price and mix: decomposing organic growth like a public filing
2/5+150 XP

Key calculations, figures and benchmarks

5Reading the P&L like an FMCG CFO: from net revenue to EBIT bridge+1506Volume, price and mix: decomposing organic growth like a public filing+1507Category and market share metrics: reading Nielsen and Circana data+1508Benchmarking the balance sheet: capital intensity and return ratios in FMCG+1509Valuation multiples for consumer goods: EV/EBITDA, P/E and organic growth premiums+150

Volume, price and mix: decomposing organic growth like a public filing

# Volume, price and mix: decomposing organic growth like a public filing

On an earnings call in early 2025, Nestlé reported organic growth of roughly 2.7% for the prior fiscal year, and the first question from an analyst was not "is that good?" but "how much of that is real volume?" That distinction, whether growth comes from selling more units or from charging more per unit, is the single most scrutinized number in FMCG (fast-moving consumer goods, meaning packaged food, drinks, household and personal care products sold frequently and at relatively low unit cost) financial reporting.

This lesson teaches you to decompose reported revenue growth into its three drivers: volume, price and mix. It is the calculation every sell-side analyst rebuilds every quarter from company disclosures.

Why this decomposition exists

Public FMCG companies report "organic growth" or "organic revenue growth," a non-GAAP (Generally Accepted Accounting Principles) metric that strips out currency effects, acquisitions and divestitures to show growth from the underlying business. Regulators like the SEC (U.S. Securities and Exchange Commission) require companies to reconcile non-GAAP figures back to reported GAAP revenue, which is why you'll find a reconciliation table in the earnings release or 10-Q/10-KKThe average number of new users each existing user generates through referrals. Above 1.0, growth compounds on itself and becomes exponential.Voir la définition complète → filing.

Organic growth is then split into two broad components:

  • Volume/mix: how many units moved, and what combination of products (mix shifts toward higher- or lower-priced items even without changing list prices)
  • Price: how much was charged per unit, including list price increases, promotions, and pricing actions

Some companies (Unilever, Procter & Gamble) report volume and mix as one line. Others (Nestlé, Danone) sometimes split mix out separately. Always check the footnote defining the terms, definitions are not standardized across companies.

The core formula

The relationship is multiplicative, not additive, because price and volume interact:

(1 + Total Organic Growth) = (1 + Volume/Mix Growth) × (1 + Price Growth)

Analysts often approximate it as additive for small numbers, since the cross-term is tiny:

Total Organic Growth ≈ Volume/Mix Growth + Price Growth

Worked example

Take a hypothetical packaged-food segment reporting these figures in its quarterly filing (illustrative numbers, not from a real filing):

  • Reported net sales growth: 4.0%
  • Currency (FX) impact: -1.5%
  • Acquisitions/divestitures: +0.5%
  • Organic growth (the residual): 5.0%

The earnings release then states: "Organic growth of 5.0% comprised pricing of 6.0% and volume/mix of -1.0%."

Step 1: Reconcile reported to organic.

Reported growth (4.0%) = Organic (5.0%) + FX (-1.5%) + M&A (+0.5%)
4.0% = 5.0% - 1.5% + 0.5% ✓

Step 2: Check the multiplicative split.

(1 + 0.05) = (1 + Volume/Mix) × (1 + Price)
1.05 = (1 - 0.01) × (1 + 0.06)
1.05 = 0.99 × 1.06 = 1.0494 ≈ 1.05 (rounding)

This pattern, positive price and negative volume, has been the dominant story across packaged food from 2022 through 2024, as companies passed through input-cost inflation (cocoa, coffee, packaging, edible oils) and consumers pushed back by buying less or trading down.

Interpreting it: 5.0% organic growth sounds healthy, but if it is 6% price and -1% volume, the company is losing shoppers or units and covering the gap with price. That is a fundamentally different investment story than 5% built from 3% volume and 2% price, which suggests real demand strength.

What "good" looks like: benchmarks

As of 2025 to 2026 estimates, useful reference points (all approximate, sourced from company disclosures and industry commentary, treat as estimates):

  • Healthy, balanced organic growth for large-cap FMCG (Nestlé, PepsiCo, Unilever, Danone) is typically cited in the 3% to 6% range annually, a level these companies target as a mid-term algorithm.
  • Volume growth turning positive again (roughly 0% to 2%) after 2022 to 2023's volume declines has been treated by analysts as the key signal of "normalization," reported through 2024 to 2025 earnings commentary from Nestlé, Unilever and Danone.
  • Price contribution above roughly 5% to 6% sustained for multiple quarters is generally read as a red flag for volume elasticity risk, meaning further price hikes are likely to accelerate volume losses.
  • In Europe, grocery price inflation as measured by Eurostat (the EU's statistical office) peaked near 15% to 18% year-over-year in early 2023 and had eased to low single digits by 2024 to 2025, per Eurostat food price data, directly shaping how much "price" companies could still take.
  • In the US, the Bureau of Labor Statistics (BLS) "food at home" CPI (Consumer Price Index) component followed a similar arc, double-digit growth in 2022, cooling toward 1% to 2% by 2024 to 2025 (see BLS CPI data).

Reading it on an earnings call

When you hear an executive say "we are lapping pricing," they mean prior-year price increases are rolling out of the year-over-year comparison, so future organic growth will need to come increasingly from volume. This phrase is a tell that price-led growth is running out of runway.

Watch for these phrases and what they signal:

| Phrase | What it means |

|---|---|

| "Price/mix positive, volume negative" | Growth funded by pricing, demand softening |

| "Volume-led growth" | Real demand strength, generally rewarded by markets |

| "Elasticity below historical levels" | Consumers tolerating price hikes better than expected (temporarily good news) |

| "Negative mix" | Consumers trading down to cheaper SKUs (stock-keeping units) or smaller pack sizes |

🎬 [VIDEO: "How to Read a 10-KKThe average number of new users each existing user generates through referrals. Above 1.0, growth compounds on itself and becomes exponential.Voir la définition complète → Annual Report" - youtube.com/@BeatMarketAnalysis - a walkthrough of navigating SEC filings, useful background for finding the organic growth reconciliation tables discussed here]

A quick data snippet

If you're tracking this across quarters in a spreadsheet or small script, the reconciliation is trivial to automate:

python
def organic_growth(volume_mix_pct, price_pct):
    """Combine volume/mix and price into total organic growth (%)."""
    return round(((1 + volume_mix_pct/100) * (1 + price_pct/100) - 1) * 100, 2)

# Example: -1% volume/mix, +6% price
print(organic_growth(-1, 6))  # 4.94

Running several quarters through this lets you see the volume/price mix trend line without waiting for a company's own summary sentence.

Vérification des acquis

1. Why do analysts push to decompose organic growth into volume, price, and mix rather than accepting the headline organic growth number?

2. Why is the relationship between price and volume in the organic growth formula multiplicative rather than additive?

3. An analyst comparing volume/mix and price contributions across two FMCG companies' filings should be most careful about which of the following?

CHOIX MULTIPLES

4. Select ALL correct answers about what 'organic growth' as a non-GAAP metric is designed to strip out.

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers about the 'mix' component of organic growth.

Sélectionnez toutes les réponses correctes.

Why this matters for valuation

Equity analysts feed the volume/price split into forward models differently:

  • Price-led growth is usually given a lower earnings multiple assumption, because it is harder to sustain and more exposed to private-label switching (consumers moving to retailer-owned brands like Kirkland or Tesco's own range).
  • Volume-led growth supports higher confidence in forward revenue and is generally viewed as more defensible, particularly if it comes with stable or improving mix (consumers buying premium variants).

This is also why private label share is tracked alongside organic growth: in the US, private label held roughly 19% to 20% of dollar sales in food/grocery as of recent NielsenIQ estimates, and in parts of Europe (UK, Germany, Spain) private label share is meaningfully higher, often cited above 35% to 40% in some categories. Rising private label share alongside decelerating branded volume is a classic pattern analysts flag as a warning sign for branded manufacturers' pricing power.

Key Takeaways

  • Organic growth reconciles reported revenue growth by removing FX and M&A effects; always find the table in the earnings release or 10-Q/10-KKThe average number of new users each existing user generates through referrals. Above 1.0, growth compounds on itself and becomes exponential.Voir la définition complète → reconciling GAAP to non-GAAP figures.
  • The volume/price/mix split is multiplicative: (1+total) = (1+volume/mix) × (1+price), though simple addition is a fine approximation for small percentages.
  • Positive price with negative volume, the dominant 2022 to 2024 FMCG pattern, signals growth funded by pricing rather than demand, a lower-quality growth mix than volume-led growth.
  • Cross-check company commentary against public inflation data (Eurostat for Europe, BLS CPI for the US) to judge whether a company's pricing is running ahead of or behind category-wide input cost inflation.
  • Rising private label share alongside slowing branded volume is a signal that a company's pricing power, and the sustainability of its organic growth story, may be weakening.

Précédent

Reading the P&L like an FMCG CFO: from net revenue to EBIT bridge

Suivant

Category and market share metrics: reading Nielsen and Circana data