Most recent forward split at ten large dividend payers
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 Do Stock Splits Change Your Dividend?.
| ticker | effective_on | new_shares_per_old_share |
|---|---|---|
| AVGO | July 15, 2024 | 10 |
| NVDA | June 10, 2024 | 10 |
| AAPL | August 31, 2020 | 4 |
| WMT | February 26, 2024 | 3 |
| KO | August 13, 2012 | 2 |
- Rows × columns
- 5 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
ticker |
text | 5 distinct values (AAPL, AVGO, KO…) | |
effective_on |
text | 5 distinct values | |
new_shares_per_old_share |
number | 2 to 10 | count |
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
ticker,
argMax(concat(monthName(execution_date), ' ', toString(toDayOfMonth(execution_date)), ', ', toString(toYear(execution_date))), execution_date) AS effective_on,
round(argMax(toFloat64(split_to) / toFloat64(split_from), execution_date), 2) AS new_shares_per_old_share
FROM global_markets.stocks_splits
WHERE ticker IN ('AAPL', 'AVGO', 'CSCO', 'HD', 'JNJ', 'KO', 'MSFT', 'NVDA', 'PG', 'WMT')
AND split_to > split_from
AND execution_date >= '2012-01-01'
AND execution_date <= today()
AND ticker IN
(
SELECT DISTINCT ticker
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= addYears(today(), -1)
AND cash_amount > 0
)
GROUP BY ticker
ORDER BY new_shares_per_old_share DESC, ticker ASC
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 analysisDo Stock Splits Change Your Dividend?
Forward and reverse splits by year across US listings
ranking 10×3
→
Days between declaration, ex-date, record and payable
series 16×5
→
AAPL dividends per share: as reported and split adjusted
series 12×4
→
Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026
ranking 12×4
→
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
→
See all 2,170 queries →