STRASMORE/EXPLORE 2,170 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-08-22, 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
MCDJun 2, 2026014
JNJMay 26, 2026014
KOJun 15, 2026016
MSFTAug 20, 2026021
CVXAug 19, 2026022
PGJul 24, 2026024
XOMAug 17, 2026024
PEPJun 5, 2026025
Rows × columns
9 × 4
Period covered
to
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 date Aug 10, 20 to May 26, 20
ex_to_record_days number every row is 0
ex_to_pay_days number 3 to 25

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_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

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 Stock Settlement Works Under T+1
Microsoft dividend dates, from the T+2 era into T+1 series 13×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 43×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,170 queries →