Record Date vs. Ex-Dividend Date: What Changed
Record date vs. ex-dividend date: since the T+1 settlement switch in May 2024 they fall on the same day for nearly every US dividend. The change, measured.
Under U.S. T+1 settlement, the record date and the ex-dividend date of a dividend are the same day for 99% of U.S. dividend events — measured across every dividend on the tape over the trailing twelve months. That is a recent development: for decades the ex-dividend date came one business day before the record date, and most explanations you will find online still describe that older world. This page walks through what each date means, what the May 2024 settlement change did to the calendar, and what the current data actually shows.
The two dates, in one sentence each
The record date is the day the company checks its shareholder register: whoever is recorded as an owner at the close of that day receives the declared dividend. The ex-dividend date is the first trading day a buyer of the stock no longer receives that dividend — the stock trades "ex" (without) the payment from that morning on.
The two dates answer different questions. The record date is corporate bookkeeping: it defines the snapshot of ownership. The ex-dividend date is a market convention derived from it: given how long a stock trade takes to settle, the exchanges work backwards from the record date to the last day a purchase can still make it onto the register in time.
What changed in May 2024: T+1 settlement
Settlement is the step where a matched trade actually exchanges shares for cash. U.S. equities settled in two business days (T+2) from September 2017, and in one business day (T+1) from May 28, 2024. That single change re-linked the two dividend dates: with one-day settlement, a purchase on the day before the record date still settles in time — the last day to buy with the dividend is the day before the record date, and the first day without it is the record date itself. Ex-date and record date now coincide.
The shift is unmistakable in the data:
The exact SQL behind every number
SELECT toYear(ex_dividend_date) AS year,
count() AS dividends,
round(100.0 * countIf(ex_dividend_date = record_date) / count(), 1) AS pct_ex_equals_record
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND ex_dividend_date >= '2019-01-01'
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
GROUP BY year
ORDER BY yearThrough 2023 the two dates matched almost never — the ex-date sat a business day earlier. In 2024, the year of the switch, 65.1% of dividends carried identical dates (the year straddles the May cutover). In 2026 so far, across 24172 dividend events, the figure is 98.9%.
How close together are the dates now?
Zooming into the trailing twelve months, the gap between ex-date and record date is now zero calendar days for 99% of U.S. dividends:
The exact SQL behind every number
SELECT dateDiff('day', ex_dividend_date, record_date) AS calendar_days_ex_to_record,
count() AS dividends,
round(100.0 * count() / sum(count()) OVER (), 1) AS pct
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND record_date IS NOT NULL
GROUP BY calendar_days_ex_to_record
HAVING dividends >= 20
ORDER BY dividends DESCThe small remainder with a one-day-or-more gap is dominated by special situations — foreign issuers on different settlement cycles, irregular distributions, and dates that straddle weekends or market holidays, which pause the settlement clock (business days, not calendar days, are what settlement counts).
Which date decides whether you get the dividend?
For a buyer, the operative date is the ex-dividend date: own the stock before it, and the dividend is yours; buy on or after it, and the payment goes to the seller. With the two dates unified, the mechanical rule is simply — buy no later than the day before the record/ex date. The full mechanics, including what happens to the share price that morning and why the market marks quotes down by the dividend amount, are covered in our companion guide to how the ex-dividend date works.
Note what the record date is not: it is not a trading deadline. A purchase made ON the record date settles the following business day — one day after the register snapshot — and misses the payment. Publications that describe buying "two days before the record date" are quoting the retired T+2 calendar.
The rest of the timeline: declaration and payment
The record and ex-dates sit inside a longer calendar. Measured across 44036 recurring U.S. dividends in the trailing twelve months, companies declare a dividend a median of 30 days before its ex-date, and cash lands a median of 5 days after the record date:
The exact SQL behind every number
SELECT count() AS dividends,
round(quantile(0.5)(dateDiff('day', declaration_date, ex_dividend_date)), 0) AS median_declared_to_ex_days,
round(quantile(0.5)(dateDiff('day', record_date, pay_date)), 0) AS median_record_to_pay_days
FROM global_markets.stocks_dividends
WHERE currency = 'USD'
AND distribution_type = 'recurring'
AND ex_dividend_date >= today() - INTERVAL 12 MONTH
AND ex_dividend_date <= today()
AND declaration_date IS NOT NULL
AND pay_date IS NOT NULL
AND record_date IS NOT NULL
AND pay_date >= record_dateSo a typical quarterly dividend is announced about a month ahead, fixes its ownership snapshot on the record/ex date, and pays out within about a week of that snapshot.
Record date vs. ex-dividend date FAQ
Are the record date and the ex-dividend date the same day now?
For nearly all U.S. dividends, yes. Since the move to T+1 settlement on May 28, 2024, the ex-dividend date and the record date coincide for 98.9% of U.S. dividend events in 2026. Before that change, the ex-date was one business day earlier than the record date.
If I buy a stock on the record date, do I get the dividend?
No. A trade made on the record date settles the next business day, after the shareholder register snapshot is taken, and the dividend goes to the seller. To receive the dividend, the purchase must be made before the ex-dividend date — which today is the same day as the record date.
Why did the ex-dividend date used to be earlier than the record date?
Stock trades took longer to settle. Under T+2 settlement (2017–2024) a purchase needed two business days to reach the register, and the exchanges set the ex-date one business day before the record date to reflect that. Each time the settlement cycle shortened — T+3 to T+2 in 2017, T+2 to T+1 in 2024 — the ex-date moved closer to the record date.
Which date should I actually watch?
The ex-dividend date. It is the market-facing deadline that decides who receives the payment, it is published on every dividend calendar, and under T+1 it doubles as the record date for almost every U.S. dividend. The payment itself arrives a median of 5 days later.
Every figure on this page is computed live from the dividend records in our warehouse — run the queries yourself, or explore your own holdings' dividend calendars, on the Strasmore terminal.