When Does a Stock Split Take Effect?
Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026ranking ·
2026-08-05 · 12×4
US-listed splits by ratio band, 2021 to mid-2026: the 25% line in the dataranking ·
2026-08-05 · 5×3
NVDA around its 10-for-1 split: regular-session close and volume, June 3 to June 14, 2024series ·
2026-08-05 · 10×4
Effective dates by weekday: US-listed splits, 2021 to mid-2026series ·
2026-08-05 · 5×3
Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026
Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026
| ticker | effective_label | ratio_label | new_shares_per_old_share |
|---|---|---|---|
| BKNG | Apr 6, 2026 | 25-for-1 | 25 |
| NFLX | Nov 17, 2025 | 10-for-1 | 10 |
| ORLY | Jun 10, 2025 | 15-for-1 | 15 |
| LRCX | Oct 3, 2024 | 10-for-1 | 10 |
| SMCI | Oct 1, 2024 | 10-for-1 | 10 |
| DECK | Sep 17, 2024 | 6-for-1 | 6 |
| AVGO | Jul 15, 2024 | 10-for-1 | 10 |
| CMG | Jun 26, 2024 | 50-for-1 | 50 |
| NVDA | Jun 10, 2024 | 10-for-1 | 10 |
| WMT | Feb 26, 2024 | 3-for-1 | 3 |
| TSLA | Aug 25, 2022 | 3-for-1 | 3 |
| GOOGL | Jul 18, 2022 | 20-for-1 | 20 |
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 12
More from this analysisWhen Does a Stock Split Take Effect?
US-listed splits by ratio band, 2021 to mid-2026: the 25% line in the data
ranking 5×3
→
NVDA around its 10-for-1 split: regular-session close and volume, June 3 to June 14, 2024
series 10×4
→
Effective dates by weekday: US-listed splits, 2021 to mid-2026
series 5×3
→
Forward and reverse splits by year across US listings
ranking 10×3
→
See all 2,170 queries →