STRASMORE/EXPLORE 2,469 QUERIES

Ex-dividend date to payment date, latest 2026 dividend for nine household 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-09-20, from How Stock Settlement Works Under T+1.

as of series 9×4read in context →
Ex-dividend date to payment date, latest 2026 dividend for nine household payers — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlatest_ex_dateex_to_record_daysex_to_pay_days
AAPLAug 10, 202603
JNJAug 25, 2026014
MCDSep 1, 2026015
KOSep 15, 2026016
MSFTAug 20, 2026021
CVXAug 19, 2026022
PGJul 24, 2026024
XOMAug 17, 2026024
PEPSep 4, 2026026
Rows × columns
9 × 4
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 Ex-dividend date to payment date, latest 2026 dividend for nine household payers, derived from the stored result.
ColumnTypeRangeNotes
ticker text 9 distinct values (AAPL, CVX, JNJ…)
latest_ex_date text 9 distinct values (Aug 10, 2026, Aug 17, 2026, Aug 19, 2026…)
ex_to_record_days number every row is 0
ex_to_pay_days number 3 to 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.

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_date,
    dateDiff('day', max(ex_dividend_date), argMax(record_date, ex_dividend_date)) AS ex_to_record_days,
    dateDiff('day', max(ex_dividend_date), argMax(pay_date, ex_dividend_date))    AS ex_to_pay_days
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM', 'CVX', 'PEP', 'MCD')
  AND ex_dividend_date >= '2026-01-01'
  AND ex_dividend_date <= today()
  AND record_date >= ex_dividend_date
  AND pay_date > ex_dividend_date
GROUP BY ticker
ORDER BY ex_to_pay_days
⌘/Ctrl + Enter
More from this analysisHow Stock Settlement Works Under T+1
Microsoft dividend dates, from the T+2 era into T+1 series 14×6 Trade date to settlement date across real sessions, November 2025 series 11×5 Gap between ex-dividend date and record date, by year ranking 12×3 Regular dividends: ex-date before the record date, or on it series 44×5 Share of 2024 US dividends whose record date fell on the ex-dividend date series 12×3 Board declaration to ex-date to payment, eight household payers ranking 8×4 See all 2,469 queries →