STRASMORE/EXPLORE 2,173 QUERIES

Days from ex-dividend date to payment, four years of distributions

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 ADRs Work: Ratios, Fees and Dividends.

as of ranking 8×3read in context →
Days from ex-dividend date to payment, four years of distributions — 8 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickeravg_days_ex_to_paylongest_days_ex_to_pay
BTI43.548
UL29.442
TSM26.828
PG25.828
KO17.119
JNJ14.718
SAP10.512
NVO9.711
Rows × columns
8 × 3
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 Days from ex-dividend date to payment, four years of distributions, derived from the stored result.
ColumnTypeRangeNotes
ticker text 8 distinct values (BTI, JNJ, KO…)
avg_days_ex_to_pay number 9.7 to 43.5
longest_days_ex_to_pay number 11 to 48

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,
    round(avg(dateDiff('day', ex_dividend_date, pay_date)), 1) AS avg_days_ex_to_pay,
    max(dateDiff('day', ex_dividend_date, pay_date))           AS longest_days_ex_to_pay
FROM
(
    SELECT
        ticker,
        ex_dividend_date,
        any(pay_date) AS pay_date
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('TSM', 'NVO', 'SAP', 'UL', 'BTI', 'KO', 'JNJ', 'PG')
      AND ex_dividend_date >= today() - 1460
      AND ex_dividend_date <  today()
    GROUP BY ticker, ex_dividend_date
)
WHERE pay_date > ex_dividend_date
GROUP BY ticker
ORDER BY avg_days_ex_to_pay 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 ADRs Work: Ratios, Fees and Dividends
Recent share-count adjustments on large foreign issuer receipts ranking 8×3 Dividend cadence and annual cash per share, receipts against US payers ranking 8×4 A year of tape on five large exchange-listed foreign issuer receipts ranking 5×2 How a two-decade streak compounds: Microsoft's annual dividend, year by year ranking 22×2 Monthly payers in the dividend record, by completed calendar year ranking 21×3 Verizon (VZ) dividends per share by calendar year, 2005 to 2025 ranking 21×4 See all 2,173 queries →