Strasmore Research
Learn 2026-07-02

What Is an Ex-Dividend Date? Dividend Dates Explained

Declaration, ex-dividend, record, and payment dates explained with real timelines from thousands of US stocks. See who gets the dividend and when.

The ex-dividend date is the first day a stock trades without its next dividend attached: buy on or after that day and the upcoming payment goes to the seller, not to you. To collect a dividend you must own the shares before the ex-dividend date — holding them at the close of the prior trading day is what counts. Every date and figure below comes from real dividend records across thousands of US stocks, with the exact query behind each number one click away.

What Is an Ex-Dividend Date?

A dividend is a cash payment a company distributes to its shareholders, quoted per share. "Ex" is short for "without": on the ex-dividend date (the ex-date), the stock begins trading without the right to the most recently declared payment. Hold the shares through the close of the session before the ex-date and the payment is yours, even if you sell the moment the market opens on the ex-date itself. Short sellers face the mirror image: a short position held through the ex-date owes the dividend to the lender of the borrowed shares — see short interest vs. short volume for how those positions are measured.

The cutoff is a settlement rule, not a marketing choice. A US stock trade settles — legal ownership changes hands on the company's books — one business day after the trade executes, a convention known as T+1. The company pays whoever its shareholder register shows on the record date. Buy one business day before the record date and your trade settles exactly on the record date, in time for the snapshot. Buy on the ex-date and settlement lands one day after the snapshot; the seller stays on the register and keeps the payment.

The Four Dividend Dates: Declaration, Ex-Dividend, Record, and Payment

Every dividend moves through the same four checkpoints:

  1. Declaration date — the company's board announces the dividend: the cash amount per share, the record date, and the payment date. From this day forward the payment is a formal commitment.
  2. Ex-dividend date — the first day the stock trades without the payment attached. This is the only one of the four dates that decides who gets paid.
  3. Record date — the day the company snapshots its shareholder register. Under T+1 settlement it falls on the same day as the ex-date for nearly all US stocks (the data proof is below).
  4. Payment date — the day the cash actually lands in accounts.

A Real Dividend Timeline: Apple's Last Eight Dividends

Definitions are easier to hold onto with a real schedule in front of you. Here are Apple's eight most recent regular dividends, straight from the corporate-actions data — all four dates plus the cash amount per share.

QueryAAPL's last eight dividends: all four dates plus cash per share
The exact SQL behind every number
SELECT declaration_date,
       ex_dividend_date,
       record_date,
       pay_date,
       cash_amount
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND distribution_type = 'recurring'
  AND ex_dividend_date <= today()
ORDER BY ex_dividend_date DESC
LIMIT 8

Read the top row left to right: Apple's board declared the dividend on 2026-04-30, the stock went ex on 2026-05-11, the register snapshot fell on 2026-05-11 — the same day as the ex-date — and $0.27 per share was paid on 2026-05-14. Across these 8 payouts the per-share amount stepped up from $0.25 to $0.27, one small raise at a time.

Ex-Dividend Date vs Record Date: The T+1 Change

Most explanations online still say the ex-date comes one business day before the record date. That was the T+2-era rule. On May 28, 2024, US settlement moved from two business days to one, and exchange rules moved the ex-date onto the record date itself. The dividend records make the switch unmistakable:

QueryShare of US dividends where ex-date = record date, by year
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 >= '2021-01-01'
  AND ex_dividend_date <= today()
  AND record_date IS NOT NULL
GROUP BY year
ORDER BY year

In 2023, 0% of US cash dividends had the ex-date and the record date on the same day — the two were offset for essentially every payment. In 2024, the changeover year, the same-day share reached 65.1%. In 2026 so far, across 23999 dividends, it stands at 98.9%. If an article tells you to count backward one business day from the record date, it predates the current rule.

How Soon After the Ex-Dividend Date Are You Paid?

Two waits matter to an income investor: how much notice you get (declaration to ex-date) and how long the cash takes to arrive (ex-date to payment). Here is the measurement across every recurring US cash dividend of the trailing 12 months:

QueryMedian waits between dividend dates (trailing 12 months, all recurring US dividends)
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', ex_dividend_date, pay_date)), 0) AS median_ex_to_pay_days,
       round(avg(dateDiff('day', ex_dividend_date, pay_date)), 1) AS avg_ex_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 pay_date >= ex_dividend_date

Across 44175 dividends, the median payment gives 30 days of notice between the announcement and the ex-date, and the cash arrives a median of 5 days after the ex-date. The average wait is 8.8 days — a tail of slow payers stretches the average well past the median. The full spread of waits:

QueryHow long after the ex-date the cash arrives (trailing 12 months)
The exact SQL behind every number
SELECT multiIf(dateDiff('day', ex_dividend_date, pay_date) <= 7, '1 week or less',
               dateDiff('day', ex_dividend_date, pay_date) <= 14, '8-14 days',
               dateDiff('day', ex_dividend_date, pay_date) <= 30, '15-30 days',
               '31+ days') AS wait_from_ex_to_pay,
       count() AS dividends,
       round(100.0 * count() / sum(count()) OVER (), 1) AS pct_of_dividends
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 pay_date IS NOT NULL
  AND pay_date >= ex_dividend_date
GROUP BY wait_from_ex_to_pay
ORDER BY min(dateDiff('day', ex_dividend_date, pay_date))

63.6% of recurring dividends pay within a week of the ex-date, while 3.4% take more than 30 days.

How Often Do US Stocks Pay Dividends?

The same dataset records each dividend's declared schedule. Counting every US ticker that paid a recurring dividend in the trailing 12 months:

QueryPayout schedules of recurring US dividend payers (trailing 12 months)
The exact SQL behind every number
SELECT multiIf(frequency = 4, 'Quarterly',
               frequency = 12, 'Monthly',
               frequency = 1, 'Annual',
               frequency = 2, 'Semi-annual',
               frequency = 52, 'Weekly',
               'Other') AS payout_schedule,
       uniqExact(ticker) AS payers,
       round(100.0 * uniqExact(ticker) / sum(uniqExact(ticker)) OVER (), 1) AS pct_of_payers
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()
GROUP BY payout_schedule
ORDER BY payers DESC

Quarterly is the default rhythm of corporate America: 4419 tickers, or 49.7% of recurring payers. Monthly schedules come second at 21.4% — a cadence most common among income-focused funds and trusts — with annual and semi-annual payers behind them and a thin tail on weekly and other schedules. Broad index funds distribute quarterly too.

What Happens to the Stock Price on the Ex-Dividend Date?

On the ex-date morning the shares no longer carry the right to the declared cash, and the market's reference prices are adjusted to match. Exchange rules mark the previous close — and standing limit orders — down by the dividend amount before the open. As a hypothetical: a stock that closes at $50.00 with a $0.50 dividend pending opens against a $49.50 adjusted reference. Nothing was lost; $0.50 of share price became $0.50 of cash in transit, and the holder's total position value is unchanged by the mechanics.

In live trading the open need not sit exactly at the adjusted level: ordinary buying and selling moves the price at the same time, and the actual print can land above or below it. Any gap between the textbook adjustment and the actual print is the catch in the popular "dividend capture" idea — buy just before the ex-date, collect the dividend, sell right after. The adjustment is designed to offset the payment, and the round trip still crosses the bid-ask spread twice, with taxes on the payout on top. The dividend calendar does not hand out free money.

Dividend Dates: Quick FAQ

If I buy a stock on the ex-dividend date, do I get the dividend?

No. The ex-date is the first day the stock trades without the payment. Your trade settles one business day later — after the record-date snapshot — and the seller receives the dividend.

Can I sell on the ex-dividend date and still get the dividend?

Yes. Hold the shares at the close of the day before the ex-date and the payment is locked in, even if you sell at the open on the ex-date itself.

How long do you have to hold a stock to get the dividend?

For the payment itself, one day at the right time: hold through the close before the ex-date. Taxes run on a separate clock — under the IRS's qualified-dividend convention, the lower tax rate generally requires holding more than 60 days within the 121-day window around the ex-date.

Is the ex-dividend date the same as the record date?

For US stocks today, effectively yes: 98.9% of 2026 US cash dividends carry identical ex and record dates. Before the T+1 settlement switch on May 28, 2024, the ex-date sat one business day earlier than the record date.

When are dividends paid?

On the payment date the company declared. Measured across the trailing 12 months, the median recurring US dividend pays 5 days after its ex-date, and 63.6% pay within a week.


Every table and chart above is a stored query you can open, edit, and re-run on the Strasmore terminal — point it at any ticker and the same four dividend dates come back in seconds.