Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of July 16, 2026 · refreshed weekly

How Often Do Stocks Split?

How often do stocks split? A data study since 2016: reverse splits far outnumber the forward ones that grab headlines, hundreds of each every year.

How often do stocks split? Far more often than the handful of headline names would tell you. Across the record from 2016 through today, companies have executed thousands of splits, and the common kind is not the forward split most investors picture. It is the reverse split. A forward split lowers a share price and raises the share count by the same factor; a reverse split does the opposite, raising the price and cutting the count. This is a data study of how frequently each one happens.

How many stocks split each year?

The yearly count is steadier than the attention any single split gets. Forward and reverse splits, counted by the date each one took effect:

QueryForward and reverse stock splits per year, 2016 to today
The exact SQL behind every number
SELECT toString(toYear(execution_date)) AS year,
       countIf(adjustment_type = 'forward_split') AS forward_splits,
       countIf(adjustment_type = 'reverse_split') AS reverse_splits
FROM global_markets.stocks_splits
WHERE execution_date BETWEEN toDate('2016-01-01') AND today()
GROUP BY year
ORDER BY year

In 2025, companies executed 240 forward splits and 1038 reverse splits. Back in 2016 the tally was 172 forward and 726 reverse. The reverse line sits above the forward line in every full year on the chart. The current year, 2026, is partial and runs only through the latest session on file.

Split activity does not swing wildly from year to year. Forward splits have stayed within a band of roughly a hundred to a couple hundred a year, and reverse splits have run several hundred to a thousand-plus, with no single year dominating the count. The thing that changes is which companies do it and how loudly the market notices. A stock split is a routine corporate action that a board approves and an exchange processes on a scheduled execution date, and the tape logs hundreds of them a year with no fanfare at all.

Forward vs reverse: the mix

Group the whole window by the kind of adjustment and the imbalance is plain. The feed also carries a third, smaller category: the stock dividend, a fractional distribution of extra shares that works like a tiny forward split.

QueryEvery share-count adjustment since 2016, by type
The exact SQL behind every number
SELECT multiIf(adjustment_type = 'forward_split', 'Forward split',
               adjustment_type = 'reverse_split', 'Reverse split',
               'Stock dividend') AS split_type,
       count() AS events
FROM global_markets.stocks_splits
WHERE execution_date BETWEEN toDate('2016-01-01') AND today()
GROUP BY split_type
ORDER BY events DESC

Since 2016 the record holds 7773 reverse splits against just 1930 forward splits, with 2450 stock dividends alongside them. The forward split, the one that trends on social media when an NVDA or an AAPL does it, is the rarest of the three. Reverse splits crowd the low-priced end of the market, where exchange minimum-price listing rules apply and a sub-dollar stock has to lift its quoted price to stay listed.

The two directions carry opposite reputations for a reason visible in the data. A company runs a forward split after its share price has climbed high enough that a round-lot feels expensive, so forward splits tend to follow strength. A reverse split appears at the other end, among stocks that have fallen far enough to risk delisting. The same corporate mechanic, share count up or down, sits at both ends of a company's fortunes, and the far more numerous end is the distressed one.

What ratio do stocks split at?

When a company runs a forward split, the modest ratios dominate. The eight most common forward-split ratios since 2016:

QueryThe most common forward-split ratios, 2016 to today
The exact SQL behind every number
SELECT concat(toString(split_to), '-for-', toString(split_from)) AS ratio,
       count() AS forward_splits
FROM global_markets.stocks_splits
WHERE adjustment_type = 'forward_split'
  AND execution_date BETWEEN toDate('2016-01-01') AND today()
GROUP BY ratio
ORDER BY forward_splits DESC
LIMIT 8

The plain 2-for-1 split leads with 536 occurrences, ahead of the 3-for-1 at 264 and the 5-for-1 at 200. A 2-for-1 doubles your share count and halves the price of each share, leaving the value of your position untouched. The eye-catching double-digit ratios that make headlines, a 10-for-1 or a 20-for-1, sit further down the list.

Reverse-split ratios run large

Reverse splits cluster at the opposite extreme. The eight most common reverse-split ratios over the same window:

QueryThe most common reverse-split ratios, 2016 to today
The exact SQL behind every number
SELECT concat(toString(split_to), '-for-', toString(split_from)) AS ratio,
       count() AS reverse_splits
FROM global_markets.stocks_splits
WHERE adjustment_type = 'reverse_split'
  AND execution_date BETWEEN toDate('2016-01-01') AND today()
GROUP BY ratio
ORDER BY reverse_splits DESC
LIMIT 8

The 1-for-10 reverse split alone accounts for 1658 events, with 1-for-5 and 1-for-20 next. A 1-for-10 turns ten shares into one and multiplies the quoted price tenfold, the standard move for a stock trying to climb back over a $1 listing minimum. Where a forward split typically halves or thirds the price, a reverse split routinely compresses it by ten, twenty, or a hundred times.

Which big companies have split recently?

Household names split rarely, so each one draws outsized coverage. The most recent forward splits among a set of widely held stocks:

QueryRecent forward splits among widely held stocks
The exact SQL behind every number
SELECT ticker,
       formatDateTime(execution_date, '%b %e, %Y') AS split_date,
       concat(toString(split_to), '-for-', toString(split_from)) AS ratio,
       round(split_to / split_from, 0) AS shares_per_share
FROM global_markets.stocks_splits
WHERE ticker IN ('NVDA', 'AAPL', 'AMZN', 'AVGO', 'NFLX', 'WMT', 'CMG', 'SHOP', 'DXCM', 'SMCI')
  AND adjustment_type = 'forward_split'
  AND split_to >= 2 * split_from
  AND execution_date BETWEEN toDate('2016-01-01') AND today()
ORDER BY execution_date DESC
LIMIT 12

The most recent on the list is NFLX, which went 10-for-1 on Nov 17, 2025. Before it, SMCI split 10-for-1 and AVGO split 10-for-1. A cluster of ten-figure names splitting in a short span reads as a milestone, yet against the 240 forward splits the market logged in 2025 alone, the famous ones are a rounding error. Whether a split is worth acting on is a separate question from how often splits happen: our does a stock go up after a split study takes that up directly.

FAQ

How often do stocks split?

Every year brings hundreds of each type. In 2025 there were 240 forward splits and 1038 reverse splits on record. The count has stayed in that range across the years since 2016.

Are reverse splits more common than forward splits?

Yes, by a wide margin. Since 2016 the record holds 7773 reverse splits against 1930 forward splits. Reverse splits populate the low-priced end of the market, where a stock lifts its quoted price to meet an exchange listing minimum.

What is the most common stock-split ratio?

Among forward splits the 2-for-1 is the most common, with 536 on record since 2016. Reverse splits most often run 1-for-10, a far steeper compression.

Do stock splits create or destroy value?

Neither. A split multiplies the share count and divides the price by the same factor, so the market value of the company and the worth of each holder's stake are unchanged. It is a change of units, not of value.

Why do companies do reverse stock splits?

Most commonly to lift a low share price back over an exchange's minimum-price listing requirement, often around $1. A 1-for-10 reverse split turns ten shares into one and multiplies the quoted price tenfold. That is why reverse splits run several times more often than forward splits: the low-priced, at-risk end of the market is crowded.


Every panel above is a stored, inspectable query over the corporate-actions record. Open the SQL under any chart to audit it, or run the same split-frequency counts on any window on the Strasmore terminal.