STRASMORE/EXPLORE 2,170 QUERIES

Regular dividends: ex-date before the record date, or on it

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 Who Sets the Ex-Dividend Date? Not the Board.

as of series 43×5read in context →
Regular dividends: ex-date before the record date, or on it — 43 rows by 5 columns, computed from US exchange, SIP and OPRA data.
monthmonth_labeldividend_countex_before_record_pctex_on_record_pct
2023-01-01Jan 2023152999.80.1
2023-02-01Feb 202324931000
2023-03-01Mar 202349061000
2023-04-01Apr 2023240499.80.1
2023-05-01May 202334891000
2023-06-01Jun 2023480399.90
2023-07-01Jul 2023223499.90.1
2023-08-01Aug 2023310799.90
2023-09-01Sep 2023472199.90.1
2023-10-01Oct 2023218199.90
2023-11-01Nov 2023297999.90.1
2023-12-01Dec 2023487799.90.1
2024-01-01Jan 2024158399.90.1
2024-02-01Feb 2024268399.80.1
2024-03-01Mar 202447941000
2024-04-01Apr 2024269099.40.5
2024-05-01May 2024352181.818.1
2024-06-01Jun 202448734.695.4
2024-07-01Jul 202425541.498.5
2024-08-01Aug 202432175.794.2
2024-09-01Sep 202448252.297.8
2024-10-01Oct 202424971.398.7
2024-11-01Nov 202430534.895.2
2024-12-01Dec 202460021.298.7
2025-01-01Jan 202518271.897.6
2025-02-01Feb 202528142.697.4
2025-03-01Mar 20254790199
2025-04-01Apr 202530321.398.7
2025-05-01May 202539723.396.7
2025-06-01Jun 202555101.398.7
2025-07-01Jul 202529402.297.7
2025-08-01Aug 202535454.495.6
2025-09-01Sep 202548071.498.5
2025-10-01Oct 20253113199
2025-11-01Nov 202535822.997.1
2025-12-01Dec 202570700.699.4
2026-01-01Jan 202624652.897.1
2026-02-01Feb 202634374.795.3
2026-03-01Mar 202665430.699.3
2026-04-01Apr 202637600.799.3
2026-05-01May 202645821.998.1
2026-06-01Jun 202664291.198.9
2026-07-01Jul 202637232.497.5
Rows × columns
43 × 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 Regular dividends: ex-date before the record date, or on it, derived from the stored result.
ColumnTypeRangeNotes
month date 2023-01-01 to 2026-07-01
month_label text 43 distinct values (Apr 2023, Apr 2024, Apr 2025…)
dividend_count number 1,529 to 7,070 count
ex_before_record_pct number 0.6 to 100 percent
ex_on_record_pct number 0 to 99.4 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
    toString(toStartOfMonth(ex_date))                       AS month,
    formatDateTime(toStartOfMonth(ex_date), '%b %Y')        AS month_label,
    count()                                                 AS dividend_count,
    round(100 * countIf(ex_date <  record_on) / count(), 1) AS ex_before_record_pct,
    round(100 * countIf(ex_date =  record_on) / count(), 1) AS ex_on_record_pct
FROM
(
    SELECT
        id,
        any(ex_dividend_date) AS ex_date,
        any(record_date)      AS record_on
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= toDate('2023-01-01')
      AND ex_dividend_date <  toStartOfMonth(today())
      AND record_date      >= toDate('2000-01-01')
      AND frequency > 0
    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 analysisWho Sets the Ex-Dividend Date? Not the Board
Board declaration to ex-date to payment, eight household payers ranking 8×4 Ex-date alignment by payout cadence, since T+1 took effect ranking 6×4 One-time distributions by size: where the ex-date lands ranking 4×4 Cash dividends by month: did the record date land on the ex-dividend date? series 39×5 Monthly count of dividend declarations across the market series 36×4 KO: dividend per share against the realised opening drop, every ex-date 2021 to 2025 series 20×4 See all 2,170 queries →