STRASMORE/EXPLORE 2,170 QUERIES

Payout ratio by yield band: US payers, $1B+ market cap, latest snapshot

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-15, from What Is Dividend Yield? What's Normal in 2026.

as of table 4×6read in context →
Payout ratio by yield band: US payers, $1B+ market cap, latest snapshot — 4 rows by 6 columns, computed from US exchange, SIP and OPRA data.
yield_bandpayersmedian_yield_pctmedian_payout_ratio_pctpct_paying_over_earningspct_no_positive_eps
under 2.5%7781.0625.44.49.1
2.5-5%3473.3162.423.47.5
5-8%1026.02118.156.820.6
8% and up5911.28151.779.616.9
Rows × columns
4 × 6
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Payout ratio by yield band: US payers, $1B+ market cap, latest snapshot, derived from the stored result.
ColumnTypeRangeNotes
yield_band text 4 distinct values (2.5-5%, 5-8%, 8% and up…)
payers number 59 to 778
median_yield_pct number 1.06 to 11.28 percent
median_payout_ratio_pct number 25.4 to 151.7 percent
pct_paying_over_earnings number 4.4 to 79.6 percent
pct_no_positive_eps number 7.5 to 20.6 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 multiIf(dividend_yield * 100 >= 8, '8% and up',
               dividend_yield * 100 >= 5, '5-8%',
               dividend_yield * 100 >= 2.5, '2.5-5%',
               'under 2.5%') AS yield_band,
       count() AS payers,
       round(quantileDeterministic(0.5)(dividend_yield * 100, cityHash64(ticker)), 2) AS median_yield_pct,
       round(quantileDeterministicIf(0.5)(dividend_yield * price / earnings_per_share * 100,
                                          cityHash64(ticker), earnings_per_share > 0), 1) AS median_payout_ratio_pct,
       round(100 * countIf(earnings_per_share > 0 AND dividend_yield * price > earnings_per_share)
             / countIf(earnings_per_share > 0), 1) AS pct_paying_over_earnings,
       round(100 * countIf(earnings_per_share <= 0) / count(), 1) AS pct_no_positive_eps
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 IS NOT NULL
GROUP BY yield_band
HAVING countIf(earnings_per_share > 0) > 0
ORDER BY median_yield_pct

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 analysisWhat Is Dividend Yield? What's Normal in 2026
Trailing yield by sector fund: twelve months of distributions ÷ latest price table 13×5 The market's dividend yield vs. the 10-year Treasury: end-June readings, 2016-2026 table 11×5 Conagra (CAG): price, quarterly dividend, and yield, month-end 2023-07 to 2026-06 series 36×5 Trailing dividend yields: eight household names, latest snapshot on file ranking 8×3 Recurring cash dividends by payment schedule: H1 2026, all US-listed payers ranking 5×3 Dividend yield across the US market: $1B+ market cap, $5+ share price, latest snapshot scalar 1×6 See all 2,170 queries →