STRASMORE/EXPLORE 2,170 QUERIES

Cash dividends by month: did the record date land on the ex-dividend date?

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 Street Name vs Holder of Record: Cede & Co.

as of series 39×5read in context →
Cash dividends by month: did the record date land on the ex-dividend date? — 39 rows by 5 columns, computed from US exchange, SIP and OPRA data.
monthmonth_labelsame_day_pctrecord_after_ex_pctdividend_count
2023-06-01Jun 202301004043
2023-07-01Jul 20230.199.91847
2023-08-01Aug 202301002609
2023-09-01Sep 202301003589
2023-10-01Oct 20230.199.91911
2023-11-01Nov 202301002619
2023-12-01Dec 202301004657
2024-01-01Jan 20240.299.81322
2024-02-01Feb 20240.199.92326
2024-03-01Mar 202401003826
2024-04-01Apr 202401002128
2024-05-01May 202415852739
2024-06-01Jun 202498.11.94123
2024-07-01Jul 202499.50.52131
2024-08-01Aug 202496.73.32663
2024-09-01Sep 202498.71.33783
2024-10-01Oct 202498.71.32163
2024-11-01Nov 202496.53.52627
2024-12-01Dec 202498.91.15550
2025-01-01Jan 202598.31.71532
2025-02-01Feb 202597.32.72486
2025-03-01Mar 202599.10.94087
2025-04-01Apr 202598.71.32486
2025-05-01May 202597.92.13084
2025-06-01Jun 202598.91.14628
2025-07-01Jul 202599.20.82521
2025-08-01Aug 202597.92.13003
2025-09-01Sep 202599.70.34213
2025-10-01Oct 20259912738
2025-11-01Nov 202598.51.53177
2025-12-01Dec 202599.50.56657
2026-01-01Jan 202698.51.52202
2026-02-01Feb 202697.52.53089
2026-03-01Mar 202699.30.75181
2026-04-01Apr 202699.10.93199
2026-05-01May 202699.20.83778
2026-06-01Jun 202699.50.55559
2026-07-01Jul 202698.91.13289
2026-08-01Aug 20269912482
Rows × columns
39 × 5
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 Cash dividends by month: did the record date land on the ex-dividend date?, derived from the stored result.
ColumnTypeRangeNotes
month date 2023-06-01 to 2026-08-01
month_label text 39 distinct values (Apr 2024, Apr 2025, Apr 2026…)
same_day_pct number 0 to 99.7 percent
record_after_ex_pct number 0.3 to 100 percent
dividend_count number 1,322 to 6,657 count

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
    toString(toStartOfMonth(ex_date))                     AS month,
    formatDateTime(toStartOfMonth(ex_date), '%b %Y')      AS month_label,
    round(100 * countIf(rec_date = ex_date) / count(), 1) AS same_day_pct,
    round(100 * countIf(rec_date > ex_date) / count(), 1) AS record_after_ex_pct,
    count()                                               AS dividend_count
FROM
(
    SELECT
        any(ex_dividend_date) AS ex_date,
        any(record_date)      AS rec_date
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= '2023-06-01'
      AND ex_dividend_date <  today()
      AND cash_amount > 0
      AND currency = 'USD'
      AND record_date >= ex_dividend_date
      AND dateDiff('day', ex_dividend_date, record_date) <= 10
      AND ticker NOT IN ('SPCX')
    GROUP BY id
)
GROUP BY month, month_label
ORDER BY month

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 analysisStreet Name vs Holder of Record: Cede & Co
Coca-Cola quarterly dividends: calendar days from ex-dividend date to record date series 14×4 Average days from record date to pay date, eight large dividend payers ranking 8×3 Reported short interest and days to cover, latest settlement date on file ranking 8×4 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 The T+1 cutover, week by week: share of dividends with ex-date = record date, April–July 2024 ranking 18×3 See all 2,170 queries →