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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
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
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.