Current yield vs five-year dividend growth: ten household payers, July 2026
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-22, from What Is a Good Dividend Yield in 2026?.
| symbol | current_yield_pct | five_year_dividend_growth_pct | dividends_per_share_ttm |
|---|---|---|---|
| MSFT | 0.79 | 62.6 | 3.56 |
| JNJ | 2.05 | 28.1 | 5.24 |
| KO | 2.35 | 25.3 | 2.08 |
| XOM | 2.6 | 17.2 | 4.08 |
| MCD | 2.74 | 43.6 | 7.35 |
| HD | 2.78 | 47 | 9.26 |
| PG | 2.98 | 29.2 | 4.29 |
| CVX | 3.63 | 34 | 6.98 |
| VZ | 6.06 | 11.4 | 2.8 |
| MO | 6.24 | 23.3 | 4.24 |
- Rows × columns
- 10 × 4
- 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 |
|---|---|---|---|
symbol |
text | 10 distinct values (CVX, HD, JNJ…) | |
current_yield_pct |
number | 0.79 to 6.24 | percent |
five_year_dividend_growth_pct |
number | 11.4 to 62.6 | percent |
dividends_per_share_ttm |
number | 2.08 to 9.26 |
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
WITH px AS (
SELECT ticker,
argMax(close, window_start) AS price
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('MSFT','MCD','HD','PG','KO','JNJ','XOM','CVX','VZ','MO')
AND window_start >= toDateTime('2026-07-20 00:00:00')
AND window_start < toDateTime('2026-07-31 00:00:00')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker
),
dv AS (
SELECT ticker,
sumIf(cash_amount, ex_dividend_date > toDate('2025-07-30')
AND ex_dividend_date <= toDate('2026-07-30')) AS ttm_now,
sumIf(cash_amount, ex_dividend_date > toDate('2020-07-30')
AND ex_dividend_date <= toDate('2021-07-30')) AS ttm_five_years_ago
FROM global_markets.stocks_dividends
WHERE ticker IN ('MSFT','MCD','HD','PG','KO','JNJ','XOM','CVX','VZ','MO')
AND distribution_type = 'recurring'
AND cash_amount > 0
AND ((ex_dividend_date > toDate('2020-07-30') AND ex_dividend_date <= toDate('2021-07-30'))
OR (ex_dividend_date > toDate('2025-07-30') AND ex_dividend_date <= toDate('2026-07-30')))
GROUP BY ticker
)
SELECT px.ticker AS symbol,
round(dv.ttm_now / px.price * 100, 2) AS current_yield_pct,
round(100 * (dv.ttm_now / dv.ttm_five_years_ago - 1), 1) AS five_year_dividend_growth_pct,
round(dv.ttm_now, 2) AS dividends_per_share_ttm
FROM px
INNER JOIN dv ON px.ticker = dv.ticker
WHERE dv.ttm_five_years_ago > 0
AND dv.ttm_now > 0
ORDER BY current_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 a Good Dividend Yield in 2026?
Trailing yield by sector fund: twelve months of distributions over the late-July 2026 price
ranking 11×4
→
Where US dividend payers sit: yield bands, $1B+ market cap, latest snapshot
ranking 7×4
→
The 10-year Treasury yield, month by month: July 2021 to the latest reading on file
series 61×3
→
Intel (INTC): month-end price, quarterly dividend, and quoted yield, Jan 2021 to Jun 2024
series 42×5
→
Monthly payers in the dividend record, by completed calendar year
ranking 21×3
→
S&P 500 tracker distributions per share, by calendar year (2015-2025)
ranking 11×3
→
See all 2,170 queries →