Share of net income already committed to the dividend
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-08, from Dividends vs Buybacks: Shareholder Yield.
| ticker | payout_ratio_pct |
|---|---|
| CVX | 105.8 |
| KO | 84.1 |
| PEP | 71.5 |
| JNJ | 61 |
| HD | 60.3 |
| CSCO | 56.6 |
| MSFT | 19.5 |
| AAPL | 11.2 |
- Rows × columns
- 8 × 2
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 8 distinct values (AAPL, CSCO, CVX…) | |
payout_ratio_pct |
number | 11.2 to 105.8 | percent |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
SELECT
ticker,
round(100 * sum(dividends_q) / sum(net_income_q), 1) AS payout_ratio_pct
FROM
(
SELECT
arrayJoin(tickers) AS ticker,
period_end,
toFloat64(abs(argMax(dividends, (filing_date, period_end)))) AS dividends_q,
toFloat64(argMax(net_income, (filing_date, period_end))) AS net_income_q
FROM global_markets.stocks_cash_flow_statements
WHERE timeframe = 'quarterly'
AND period_end > today() - 400
AND hasAny(tickers, ['AAPL', 'MSFT', 'KO', 'PEP', 'CVX', 'CSCO', 'HD', 'JNJ'])
GROUP BY ticker, period_end
HAVING ticker IN ('AAPL', 'MSFT', 'KO', 'PEP', 'CVX', 'CSCO', 'HD', 'JNJ')
)
GROUP BY ticker
HAVING sum(net_income_q) > 0
ORDER BY payout_ratio_pct DESC
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisDividends vs Buybacks: Shareholder Yield
Dividend yield, buyback yield and total shareholder yield
ranking 4×4
→
AAPL diluted share count, every reported quarter since 2021
series 20×3
→
The exact quarters behind each buyback yield
table 4×5
→
How long after the ex-date the cash actually arrives
ranking 10×3
→
Opening drop per dollar of dividend paid, ex-dates 2021 to 2025
ranking 10×4
→
Quarterly dividend against ordinary overnight moves, 2021 to 2025
ranking 10×4
→
See all 2,170 queries →