When Does a Stock Split Take Effect?
A stock split takes effect on the ex-distribution date, usually the business day after the payable date. Here is the full timeline, with due bills explained.
A stock split takes effect on its ex-distribution date, the first session the stock quotes at the new, adjusted price. For a forward split that session normally falls one business day after the payable date, the day the extra shares are credited. That ordering surprises most people: the shares can land in an account while the quoted price is still the old one.
The four dates of a stock split, in order
Four dates govern every split, and only one of them changes what you see on a quote screen. What a stock split does to the share count is simple arithmetic. The calendar is where the confusion lives.
- Announcement date. The board approves the split and the company discloses the ratio along with the dates it intends to use. Nothing has happened to the stock or to any account.
- Record date. The cutoff for the books. Whoever the transfer agent lists as a holder at the close of that day is entitled to the additional shares.
- Payable date, also called the distribution date. The additional shares are issued and credited to entitled holders, normally after the close.
- Ex-distribution date. The first session the stock trades on the new basis, at the ratio-adjusted price. This is the day the split takes effect for anyone watching a chart.
The panel below lists completed forward splits of 3-for-1 or larger at names most readers know, with the effective date of each.
The exact SQL behind every number
SELECT ticker,
formatDateTime(execution_date, '%b %e, %Y') AS effective_label,
concat(toString(toUInt32(max(split_to))), '-for-', toString(toUInt32(max(split_from)))) AS ratio_label,
round(toFloat64(max(split_to)) / toFloat64(max(split_from)), 1) AS new_shares_per_old_share
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2022-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
AND toFloat64(split_to) / toFloat64(split_from) >= 3
AND ticker IN ('AMZN', 'GOOGL', 'TSLA', 'WMT', 'NVDA', 'CMG', 'AVGO', 'SMCI', 'LRCX', 'DECK', 'ORLY', 'NFLX', 'MSFT', 'AAPL', 'COST', 'ISRG', 'BKNG', 'FICO')
GROUP BY ticker, execution_date
ORDER BY max(execution_date) DESC
LIMIT 12The most recent on the panel, BKNG, took effect on Apr 6, 2026 at 25-for-1: one old share became 25. The oldest row, GOOGL, dates to Jul 18, 2022. All 12 are settled history, which makes every date on the list checkable against the exchange notice that carried it.
When does a stock split take effect for a forward split?
On the business day after the payable date. A company that credits shares after the close on a Friday has its first adjusted session on the following Monday. Run that rule across every split of the past five and a half years and it turns up in the weekday counts.
The exact SQL behind every number
WITH s AS (
SELECT ticker,
execution_date,
toFloat64(max(split_to)) / toFloat64(max(split_from)) AS ratio
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2021-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
GROUP BY ticker, execution_date
)
SELECT multiIf(toDayOfWeek(execution_date) = 1, 'Monday',
toDayOfWeek(execution_date) = 2, 'Tuesday',
toDayOfWeek(execution_date) = 3, 'Wednesday',
toDayOfWeek(execution_date) = 4, 'Thursday',
'Friday') AS weekday,
countIf(ratio >= 1.25) AS forward_splits,
countIf(ratio < 1) AS reverse_splits
FROM s
WHERE toDayOfWeek(execution_date) <= 5
GROUP BY weekday
ORDER BY forward_splits DESC, weekdaySorted by frequency, Thursday tops the list with 300 forward splits since 2021, against 183 on Wednesday. Reverse splits use the same effective-date machinery, and 789 of them also landed on a Thursday. For events still ahead, the upcoming stock splits calendar carries the announced dates, and recent stock splits lists what has already gone through.
Why the ex-date comes after the payable date: due bills
The gap between the record date and the ex-date is where due bills live. Across those days the stock still trades at the pre-split price, and the shares changing hands are shares that will be multiplied when the distribution is credited. The seller was the holder of record, and the extra shares are credited to the seller's account. The buyer paid the pre-split price and is entitled to them.
A due bill closes that loop. It is an obligation attached to the delivery, requiring the seller to hand over the additional shares once they arrive. Brokers process it in the background, and a retail buyer usually just sees the extra shares appear a few days after the trade. The period runs from the record date through the payable date. A trade on the ex-date or later settles clean at the adjusted price with nothing attached.
The design keeps one rule intact: the quote adjusts only after every holder of record has been credited, and the due bill covers everyone who traded in between. Regular cash dividends run the sequence the other way, with the ex-date at the front; record date vs ex-dividend date walks that version.
The 25% rule: which distributions run on the split timeline
Not every share distribution uses the split calendar. FINRA Rule 11140, part of the Uniform Practice Code, draws the line at 25%: for a stock dividend or split of 25% or more of the shares outstanding, the ex-date is the first business day following the payable date. Below 25%, the distribution follows the ordinary ex-date convention, which under T+1 settlement puts the ex-date on the record date itself. Exchanges apply the same threshold in the processing notice they publish for each event.
Sorting every US-listed split of the past five and a half years by ratio puts both sides of that line on one chart.
The exact SQL behind every number
WITH s AS (
SELECT ticker,
execution_date,
toFloat64(max(split_to)) / toFloat64(max(split_from)) AS ratio
FROM global_markets.stocks_splits
WHERE execution_date >= toDate('2021-01-01')
AND execution_date <= toDate('2026-07-31')
AND split_to > 0
AND split_from > 0
GROUP BY ticker, execution_date
)
SELECT multiIf(ratio < 1, 'reverse split',
ratio < 1.25, 'under 25%',
ratio < 2, '25% to 2-for-1',
ratio < 5, '2-for-1 to 5-for-1',
'5-for-1 or larger') AS ratio_band,
count() AS splits,
uniqExact(ticker) AS companies
FROM s
GROUP BY ratio_band
ORDER BY min(ratio)4559 of the events were reverse splits across 3523 companies, the share count going down rather than up (what a reverse stock split does covers that case, which is processed as of its effective date and generates no due bills). 1101 sat in the under 25% band, small stock dividends that never touch the split timeline. Above the line: 117 in the 25% to 2-for-1 band, 727 at 2-for-1 to 5-for-1, and 334 at 5-for-1 or larger, the tier that produces the headlines.
A worked timeline: NVIDIA's 10-for-1 split
NVIDIA announced a 10-for-1 split alongside its quarterly results in late May 2024 and ran the standard calendar. Ten sessions of closes around the event, with the record date, the payable date, and the first adjusted session all inside the window:
The exact SQL behind every number
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS date,
formatDateTime(toDate(toTimeZone(window_start, 'America/New_York')), '%b %e, %Y') AS day_label,
round(toFloat64(argMax(close, window_start)), 2) AS close_usd,
round(toFloat64(sum(volume)) / 1e6, 1) AS volume_millions
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'NVDA'
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2024-06-03')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2024-06-14')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY date, day_label
ORDER BY dateRead the rows in order. Jun 6, 2024 was the record date, and the close that day was $1209.42. The additional shares went out after the close on Jun 7, 2024, a session that finished at $1208.65, still the pre-split level. Jun 10, 2024 is the ex-distribution date: the close was $121.65, about a tenth of the prior print, and the historical bars on any live chart were restated to match.
The first adjusted close is not the previous close divided by ten, and it never is. The split fixes the share count. The session that follows prices the stock the way every other session does. Volume sits on the same panel: 38.4 million shares in the regular session on Jun 3, 2024, and 270.6 million on Jun 14, 2024, with each share carrying a tenth of the claim it did at the start of the window.
Listed options are adjusted by the clearing house on the same date, with strikes and deliverables rewritten; how stock splits affect options has those mechanics, and does a stock go up after a split puts numbers on the question every split calendar raises.
What a holder sees in the account, day by day
- On the record date. Nothing visible changes. The share count, the price, and the position value are what they were the day before.
- On the payable date. The additional shares post, often overnight. For a few hours an account can show the new share count against the old price, an inflated balance that corrects itself at the next open.
- On the ex-distribution date. The quote opens at the adjusted level, the position value returns to where it started, and the price history on the chart is restated.
- Cash in lieu. A ratio that does not divide evenly leaves a fraction. A 3-for-2 split on 7 shares works out to 10.5. Transfer agents generally pay the half share out in cash at a reference price rather than issuing it, and it arrives as a small taxable transaction rather than as stock.
Stock split dates FAQ
Does a stock split take effect on the record date or the ex-date?
The ex-distribution date. The record date only fixes who is entitled to the additional shares. For a distribution of 25% or more, the ex-date is the first business day after the payable date, so the adjusted price prints once the shares have been credited.
How many days after the record date does a split take effect?
There is no fixed number. The company sets the gap and the exchange notice for the event publishes it. NVIDIA's 10-for-1 ran a record date of Jun 6, 2024, distribution after the close on Jun 7, 2024, and adjusted trading from Jun 10, 2024.
What happens if I buy a stock between the record date and the split date?
You receive the additional shares. The trade carries a due bill, an obligation attached to the delivery that moves the extra shares from the seller to you. You pay the pre-split price and end up with the post-split share count.
Do I get cash for fractional shares in a stock split?
Usually. When the ratio leaves a fraction of a share, the transfer agent typically sells it and pays cash in lieu at a reference price, which lands in the account as a small taxable transaction.
Does a stock split change what my position is worth?
Not by itself. Share count and price move by the same ratio on the ex-date, and the position value at that moment is unchanged. What the stock does afterward is ordinary trading.
Every date and price on this page comes from a stored query over filed corporate actions and real session prices. Open any panel to read the SQL, or run the same screens on the Strasmore terminal.