STRASMORE/EXPLORE 2,170 QUERIES

Days from ex-dividend date to cash: six household dividend 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-11, from Dividend Reinvestment Plans (DRIPs) Explained.

as of ranking 6×4read in context →
Days from ex-dividend date to cash: six household dividend payers — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerpayment_countavg_days_ex_to_paymax_days_ex_to_pay
PG825.228
MSFT822.828
KO81719
JNJ81414
O2513.717
AAPL83.46
Rows × columns
6 × 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 Days from ex-dividend date to cash: six household dividend payers, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, JNJ, KO…)
payment_count number 8 to 25 count
avg_days_ex_to_pay number 3.4 to 25.2
max_days_ex_to_pay number 6 to 28

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
WITH payouts AS (
    SELECT
        ticker,
        any(ex_dividend_date) AS ex_date,
        any(pay_date)         AS paid_on
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AAPL', 'JNJ', 'KO', 'MSFT', 'O', 'PG')
      AND ex_dividend_date >= '2024-07-01'
      AND ex_dividend_date <  '2026-07-01'
      AND cash_amount > 0
    GROUP BY id, ticker
)
SELECT
    ticker,
    count()                                          AS payment_count,
    round(avg(dateDiff('day', ex_date, paid_on)), 1) AS avg_days_ex_to_pay,
    max(dateDiff('day', ex_date, paid_on))           AS max_days_ex_to_pay
FROM payouts
WHERE paid_on > ex_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 analysisDividend Reinvestment Plans (DRIPs) Explained
Reinvestment events a year: a monthly payer against a quarterly payer ranking 10×3 How often listed payers distribute, trailing year ranking 5×3 KO: ex-dividend close against the pay date close, 2021 to 2026 series 22×5 How a two-decade streak compounds: Microsoft's annual dividend, year by year ranking 22×2 Dividend growth champions: 20+ straight years of raises, ranked by how many times over the payout grew ranking 20×3 The most common split terms of the past five years ranking 12×3 See all 2,170 queries →