Dividends that went ex AFTER the record date: special vs. recurring, trailing 12 months
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 Ex-Dividend Date vs. Record Date: Same Day?.
| dividend_type | dividends | ex_after_record | pct_ex_after_record | median_days_record_to_ex | pct_of_those_ex_after_pay |
|---|---|---|---|---|---|
| special | 457 | 23 | 5.03 | 16 | 96 |
| recurring | 44969 | 12 | 0.03 | 6 | 33 |
- Rows × columns
- 2 × 6
- 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 |
|---|---|---|---|
dividend_type |
text | 2 distinct values (recurring, special) | |
dividends |
number | 457 to 44,969 | |
ex_after_record |
number | 12 to 23 | |
pct_ex_after_record |
number | 0.03 to 5.03 | percent |
median_days_record_to_ex |
number | 6 to 16 | |
pct_of_those_ex_after_pay |
number | 33 to 96 | percent |
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 distribution_type AS dividend_type,
count() AS dividends,
countIf(ex_dividend_date > record_date) AS ex_after_record,
round(100.0 * countIf(ex_dividend_date > record_date) / count(), 2) AS pct_ex_after_record,
round(quantileDeterministicIf(0.5)(dateDiff('day', record_date, ex_dividend_date), cityHash64(id), ex_dividend_date > record_date), 0) AS median_days_record_to_ex,
round(100.0 * countIf(ex_dividend_date > record_date AND ex_dividend_date > pay_date) / greatest(countIf(ex_dividend_date > record_date), 1), 0) AS pct_of_those_ex_after_pay
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND distribution_type IN ('special', 'recurring')
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
AND pay_date IS NOT NULL
GROUP BY distribution_type
HAVING countIf(ex_dividend_date > record_date) > 0
ORDER BY indexOf(['special', 'recurring'], distribution_type)
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 analysisEx-Dividend Date vs. Record Date: Same Day?
The T+1 cutover, week by week: share of dividends with ex-date = record date, April–July 2024
ranking 18×3
→
Ex-date vs. record date by year: share identical, and the median gap in calendar days
ranking 12×4
→
Calendar days from ex-dividend date to record date (trailing 12 months)
ranking 4×3
→
One real dividend: AAPL's most recent completed payout, all four dates
scalar 1×9
→
Median waits along the dividend calendar (trailing 12 months, recurring US dividends)
scalar 1×3
→
From ex-dividend date to record date to the cash, in calendar days
table 8×6
→
See all 2,170 queries →