Dividend Payout Ratio: How to Calculate It
The dividend payout ratio is dividends divided by earnings. See both formulas, what counts as normal by sector, and why cash flow tells a steadier story.
The dividend payout ratio is the share of a company's earnings paid out to shareholders as dividends. A company earning $4.00 per share and paying $1.60 a year in dividends has a payout ratio of 40%. Yield measures what a shareholder collects against the price. The payout ratio measures how much of the company's own profit that payment consumes, which is the question a yield cannot answer on its own.
How do you calculate the dividend payout ratio?
Two formulas are standard, and both are drawn from the same annual report.
- Per share: dividends per share divided by earnings per share. With the illustrative figures above, $1.60 divided by $4.00 gives 40%.
- Total: total dividends paid divided by net income. In a 10-K, dividends paid sits in the financing section of the cash flow statement, and net income sits at the bottom of the income statement.
Share counts drift over a year and buybacks move them faster, so the two formulas can disagree by a point or so on the same company. Neither version is wrong. Use the one whose inputs you can see on the page, and say which one you used.
The mirror image is the retention ratio, 1 minus the payout ratio: the share of profit the company keeps for reinvestment, debt repayment, buybacks, or acquisitions. A 40% payout is a 60% retention.
Familiar large companies, at the latest snapshot on file (July 2026):
The exact SQL behind every number
SELECT ticker,
round(argMax(dividend_yield * price / earnings_per_share, date) * 100, 1) AS payout_ratio_pct,
round(argMax(dividend_yield, date) * 100, 2) AS dividend_yield_pct
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
AND ticker IN ('KO', 'JNJ', 'PG', 'MSFT', 'AAPL', 'CVX', 'VZ', 'HD')
AND dividend_yield > 0
AND earnings_per_share > 0
GROUP BY ticker
ORDER BY payout_ratio_pct DESCThe panel runs from CVX near 120.7% of earnings down to AAPL at 12.6%. One ratio, and the same number carries different weight at each end. A dividend yield of 3% reads differently when 35% of earnings funds it than when 90% does.
What is a normal dividend payout ratio?
Textbooks quote 30% to 60% and stop there. The actual distribution across US payers above $1 billion in market value is wider, and the four bands below are the ones worth knowing:
The exact SQL behind every number
SELECT multiIf(payout_pct < 30, 'under 30%',
payout_pct < 60, '30% to 60%',
payout_pct < 100, '60% to 100%',
'over 100%') AS payout_band,
count() AS companies,
round(quantileDeterministic(0.5)(yield_pct, cityHash64(ticker)), 2) AS median_yield_pct
FROM (
SELECT ticker,
dividend_yield * price / earnings_per_share * 100 AS payout_pct,
dividend_yield * 100 AS yield_pct
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
AND price >= 5
AND market_cap >= 1000000000
AND dividend_yield > 0
AND earnings_per_share > 0
)
GROUP BY payout_band
ORDER BY min(payout_pct)434 payers sit in the under 30% band, 359 in 30% to 60%, 159 in 60% to 100%, and 189 distribute over 100% of what they earned. Median yield differs across the bands too: 0.77% in the lowest band against 4.38% in the highest.
Read the bands as headroom rather than as a grade. Under 30%, a company retains most of its profit and has room to raise the dividend, the profile behind most of the long records in two decades of rising dividends. Between 60% and 100%, the dividend consumes most of a normal year's profit and a weak year eats the cushion. Above 100%, the company paid out more than it earned over the measurement window, funded from cash on hand, borrowing, or asset sales.
Above 100% is not automatically distress. It is a flag that the number needs a second look, and the sector usually accounts for it.
Why sector changes what a high payout ratio means
- A REIT must distribute most of its taxable income to keep its tax status, and heavy depreciation charges push reported earnings well below the cash the buildings generate. REIT payout ratios above 100% of accounting earnings are routine, which is why analysts measure them against funds from operations instead.
- Master limited partnerships are pass-through structures built to hand cash to unit holders, and they carry the same depreciation effect.
- Utilities carry stable, regulated revenue and typically run a higher payout than an industrial company with the same yield.
- Banks set distributions alongside regulatory capital tests, so their ratios move in steps rather than smoothly.
- Younger technology companies that pay anything at all usually pay a token fraction of earnings and retain the rest.
Comparing a REIT's payout ratio with a software company's compares two different accounting worlds. Compare within a sector, and against the company's own history.
The free cash flow payout ratio
Net income is an accounting figure. It subtracts depreciation, a non-cash charge, and it includes one-time gains and write-downs that never touched a bank account. Dividends are paid in cash.
The free cash flow payout ratio closes that gap: dividends paid divided by free cash flow, where free cash flow is cash from operations minus capital expenditure. All three inputs sit on the cash flow statement.
A worked comparison with illustrative figures for a hypothetical company: net income of $500 million, depreciation of $300 million, capital spending of $250 million, dividends of $400 million. The earnings-based payout ratio is 80%. Free cash flow is $500 million plus $300 million minus $250 million, or $550 million, which puts the cash-based payout ratio at 73%. A capital-heavy company flips the picture. Raise capital spending to $600 million and free cash flow falls to $200 million against the same $400 million of dividends: a 200% cash payout ratio sitting behind a comfortable-looking 80% accounting figure.
Quoting both ratios together is the honest presentation. When they disagree by a wide margin, the cash version is the one that has to be funded.
How the ratio behaves ahead of a dividend cut
Cuts rarely arrive without a paper trail. The sequence that recurs in the filings, in order:
- The payout ratio drifts above 100% and stays there across several quarters.
- Free cash flow coverage turns negative while the declared dividend holds flat.
- Borrowing rises, or asset sales appear in the financing section.
- The company describes the dividend as under review, or new management declines to reaffirm it.
- The declared per-share amount is reduced or suspended.
None of those steps forces the next one. Each is an observation available to anyone reading the statements, and the record of dividend cuts among large US companies shows how the sequence has played out before. A payout ratio above 100% is a starting question, not a verdict, and the same ratio sorts the yield bands covered in what counts as a good dividend yield.
What a stable payout looks like on the numerator side
At a mature payer the dividend itself moves slowly and predictably. Coca-Cola's declared dividends per share, by calendar year:
The exact SQL behind every number
SELECT toYear(ex_dividend_date) AS year,
round(sum(cash_amount), 3) AS dividends_per_share_usd,
count() AS payments
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
AND cash_amount > 0
AND distribution_type = 'recurring'
AND ex_dividend_date >= toDate('2015-01-01')
AND ex_dividend_date <= toDate('2025-12-31')
GROUP BY year
ORDER BY yearAcross 11 calendar years the annual total moved from $1.32 in 2015 to $2.04 in 2025, on 4 payments in the final year. Small annual increases are the shape of a payout ratio held roughly steady while earnings grow alongside it. Now picture the other case: a payout ratio that climbs while the declared dividend stays flat. There the denominator is shrinking, and the ratio moves without management touching the check.
FAQ
What is a good dividend payout ratio?
There is no single figure that works across the market. A ratio under 60% of earnings leaves visible headroom at an ordinary operating company, while REITs and partnerships routinely exceed 100% of accounting earnings by design. Compare a company with its own sector and its own history rather than with a universal benchmark.
Can a dividend payout ratio be over 100%?
Yes. It means the dividends declared over the measurement window exceeded reported earnings for that window, with the difference funded from cash on hand, borrowing, or asset sales. One weak quarter can produce it at a healthy company; several years of it is a different picture.
What is the difference between the payout ratio and the dividend yield?
Yield divides the annual dividend by the share price and describes what a buyer collects today. The payout ratio divides the same dividend by earnings and describes how much of the company's profit the payment uses. Yield moves with the market every day; the payout ratio moves with the filings.
How do you find the payout ratio in a 10-K?
Take dividends paid from the financing activities section of the cash flow statement and divide by net income from the income statement. For the per-share version, use the dividends declared per common share figure, which most filers show near the bottom of the income statement, over diluted earnings per share.
What is a negative payout ratio?
A negative ratio means the denominator is negative: the company reported a loss over the window while still paying a dividend. The percentage itself carries no useful information at that point, and the free cash flow payout ratio is the more readable measure.
Every figure in the panels above comes from a stored, versioned query you can open, read, and re-run on the Strasmore terminal.