2026 cash dividends per share at eight widely held payers
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-07, from How to Roll an Option Position: Up and Out.
| ticker | latest_ex_label | dividend_per_share | dividends_paid_ytd |
|---|---|---|---|
| CVX | May 19, 2026 | 1.78 | 3.56 |
| JNJ | May 26, 2026 | 1.34 | 2.64 |
| PG | Jul 24, 2026 | 1.09 | 3.23 |
| XOM | May 15, 2026 | 1.03 | 2.06 |
| MSFT | May 21, 2026 | 0.91 | 1.82 |
| VZ | Jul 10, 2026 | 0.71 | 2.1 |
| KO | Jun 15, 2026 | 0.53 | 1.06 |
| AAPL | May 11, 2026 | 0.27 | 0.53 |
- Rows × columns
- 8 × 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 |
|---|---|---|---|
ticker |
text | 8 distinct values (AAPL, CVX, JNJ…) | |
latest_ex_label |
text | 8 distinct values (Jul 10, 2026, Jul 24, 2026, Jun 15, 2026…) | |
dividend_per_share |
number | 0.27 to 1.78 | |
dividends_paid_ytd |
number | 0.53 to 3.56 |
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,
formatDateTime(max(ex_dividend_date), '%b %e, %Y') AS latest_ex_label,
round(toFloat64(argMax(cash_amount, ex_dividend_date)), 2) AS dividend_per_share,
round(toFloat64(sum(cash_amount)), 2) AS dividends_paid_ytd
FROM
(
SELECT
ticker,
ex_dividend_date,
max(cash_amount) AS cash_amount
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM', 'VZ', 'CVX')
AND ex_dividend_date >= '2026-01-01'
AND ex_dividend_date < '2026-08-01'
GROUP BY ticker, ex_dividend_date
)
GROUP BY ticker
ORDER BY dividend_per_share 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 analysisHow to Roll an Option Position: Up and Out
Moving the strike up costs premium: AAPL calls 30 to 45 days out
ranking 6×3
→
What extra time is worth: at-the-money AAPL call premium by days to expiry
ranking 6×3
→
Time value left in an in-the-money KO call as expiry approaches
ranking 5×4
→
Median implied volatility on 20 to 45 day near-the-money calls, July 2026
ranking 5×3
→
AAPL call delta by strike distance, 20 to 45 days to expiry, July 2026
ranking 5×3
→
Median implied volatility on near-the-money AAPL calls, by month
series 24×2
→
See all 2,170 queries →