The most recent regular dividend for eleven household names
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-09-20, from Payment in Lieu of Dividends, Explained.
| ticker | cash_per_share | ex_date_label | record_date_label | pay_date_label |
|---|---|---|---|---|
| CVX | 1.78 | Aug 19, 2026 | Aug 19, 2026 | Sep 10, 2026 |
| IBM | 1.69 | Aug 10, 2026 | Aug 10, 2026 | Sep 10, 2026 |
| PEP | 1.48 | Sep 4, 2026 | Sep 4, 2026 | Sep 30, 2026 |
| JNJ | 1.34 | Aug 25, 2026 | Aug 25, 2026 | Sep 8, 2026 |
| PG | 1.0885 | Jul 24, 2026 | Jul 24, 2026 | Aug 17, 2026 |
| XOM | 1.03 | Aug 17, 2026 | Aug 17, 2026 | Sep 10, 2026 |
| MSFT | 0.91 | Aug 20, 2026 | Aug 20, 2026 | Sep 10, 2026 |
| MRK | 0.85 | Sep 15, 2026 | Sep 15, 2026 | Oct 7, 2026 |
| KO | 0.53 | Sep 15, 2026 | Sep 15, 2026 | Oct 1, 2026 |
| PFE | 0.43 | Jul 24, 2026 | Jul 24, 2026 | Sep 1, 2026 |
| AAPL | 0.27 | Aug 10, 2026 | Aug 10, 2026 | Aug 13, 2026 |
- Rows × columns
- 11 × 5
- 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 | 11 distinct values (AAPL, CVX, IBM…) | |
cash_per_share |
number | 0.27 to 1.78 | |
ex_date_label |
text | 8 distinct values (Aug 10, 2026, Aug 17, 2026, Aug 19, 2026…) | |
record_date_label |
text | 8 distinct values (Aug 10, 2026, Aug 17, 2026, Aug 19, 2026…) | |
pay_date_label |
text | 8 distinct values (Aug 13, 2026, Aug 17, 2026, Oct 1, 2026…) |
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,
round(toFloat64(argMax(cash_amount, ex_dividend_date)), 4) AS cash_per_share,
formatDateTime(max(ex_dividend_date), '%b %e, %Y') AS ex_date_label,
formatDateTime(argMax(record_date, ex_dividend_date), '%b %e, %Y') AS record_date_label,
formatDateTime(argMax(pay_date, ex_dividend_date), '%b %e, %Y') AS pay_date_label
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'JNJ', 'PG', 'KO', 'PEP', 'XOM', 'CVX', 'MRK', 'IBM', 'PFE')
AND ex_dividend_date <= today()
AND ex_dividend_date >= today() - 200
GROUP BY ticker
ORDER BY cash_per_share DESC