# 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.
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:
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 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 GrowthTake a hypothetical packaged-food segment reporting these figures in its quarterly filing (illustrative numbers, not from a real filing):
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.
As of 2025 to 2026 estimates, useful reference points (all approximate, sourced from company disclosures and industry commentary, treat as estimates):
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]
If you're tracking this across quarters in a spreadsheet or small script, the reconciliation is trivial to automate:
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.94Running 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?
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.
5. Select ALL correct answers about the 'mix' component of organic growth.
Sélectionnez toutes les réponses correctes.
Equity analysts feed the volume/price split into forward models differently:
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.
(1+total) = (1+volume/mix) × (1+price), though simple addition is a fine approximation for small percentages.