Strasmore Research
Learn am Matt ConnorBy Matt Connor · Updated 2026-09-05 · data as of September 5, 2026 · refreshed weekly

How Often Stocks Dey Split? Reverse vs Forward

Stocks dey split far pass headline names. Study since 2016 show reverse splits plenty pass forward ones, with hundreds yearly. See the full year-by-year data.

How often stocks dey split? E dey happen far pass the small number of popular names wey headlines dey show. From 2016 reach today, companies don execute thousands of splits, and the common type no be the forward split wey most investors dey imagine. Na reverse split.

A forward split dey reduce share price and increase share count by the same factor. A reverse split dey do the opposite: e dey raise the price and reduce the count. Dis study use data to check how often each type dey happen.

How many stocks split each year?

The yearly number steady pass the attention wey any single split dey get. We count forward and reverse splits based on the date wey each one take effect:

QueryForward and reverse stock splits per year, 2016 reach today
yearforward splitsreverse splits
2016172726
2017219707
2018196526
201995606
2020117685
2021174491
2022130622
2023165837
2024257871
20252401038
2026187830
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
Run am yourself

For 2025, companies execute 240 forward splits and 1038 reverse splits. For 2016, the total na 172 forward and 726 reverse. For every complete year for the chart, reverse splits dey above forward splits. The current year, 2026, no complete yet and e only cover reach the latest session wey dey on file.

Split activity no dey change sharply from one year to another. Forward splits dey stay around one hundred to a couple hundred per year. Reverse splits dey range from several hundred to more than one thousand. No single year dominate the total. Wetin dey change na the companies wey do am and how much attention the market give them. Stock split na normal corporate action wey board approve and exchange process for a scheduled execution date. The tape records hundreds of them every year, many times without any market attention.

Forward versus reverse: the mix

If we group the whole period by the kind of adjustment, the imbalance dey clear. The feed also get one third, smaller category: stock dividend, wey be fractional distribution of extra shares and dey work like small forward split.

QueryEvery share-count adjustment since 2016, by type
split typeevents
Reverse split7939
Stock dividend2475
Forward split1952
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
Run am yourself

Since 2016, the record get 7939 reverse splits against only 1952 forward splits, plus 2475 stock dividends. Forward split — the one wey dey trend for social media when NVDA or AAPL do am — na the rarest of the three. Reverse splits dey mostly happen for the low-priced end of the market, where exchange minimum-price listing rules apply and stock wey price fall below one dollar need raise the quoted price to remain listed.

The two directions get opposite reputations for one reason wey the data show clearly. Company dey run forward split after share price don rise reach level wey round lot become expensive, so forward splits usually follow strength. Reverse split dey show for the other end, among stocks wey don fall enough to face delisting risk. Na the same corporate mechanic — share count going up or down — dey appear at both ends of a company’s fortunes, but the end wey happen far more often na the distressed one.

Wetin ratio stocks dey use do split?

When company do forward split, na the modest ratios dey happen pass. The eight forward-split ratios wey happen most since 2016 na:

QueryThe forward-split ratios wey common pass, 2016 reach today
ratioforward splits
2-for-1538
3-for-1270
5-for-1200
4-for-1186
10-for-1127
3-for-239
11-for-1036
1.1-for-129
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
Run am yourself

The plain 2-for-1 split dey lead with 538 occurrences, followed by 3-for-1 with 270 and 5-for-1 with 200. Two-for-one split go double the number of shares wey you get and cut each share price by half, so the value of your position no change. The double-digit ratios wey dey make headlines, like 10-for-1 or 20-for-1, dey lower for the list.

Reverse-split ratios dey high

Reverse splits dey gather for the opposite end. The eight reverse-split ratios wey happen pass for the same period na:

QueryThe reverse-split ratios wey common pass, 2016 reach today
ratioreverse splits
1-for-101687
1-for-5659
1-for-20648
1-for-4413
1-for-100336
1-for-2316
1-for-3316
1-for-15312
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
Run am yourself

1-for-10 reverse split alone make up 1687 events, while 1-for-5 and 1-for-20 follow next. A 1-for-10 reverse split turn ten shares into one and multiply the quoted price by ten. Na the standard move for stock wey dey try climb back above the $1 listing minimum. Forward split normally fit cut the price by half or one-third, but reverse split dey usually reduce am by ten, twenty, or one hundred times.

Which big companies don split recently?

Big household-name companies no dey split often, so each one dey attract plenty coverage. These na the most recent forward splits among widely held stocks:

QueryRecent forward splits among stocks wey plenty people hold
tickersplit dateratioshares per share
NFLXNov 17, 202510-for-110
SMCIOct 1, 202410-for-110
AVGOJul 15, 202410-for-110
CMGJun 26, 202450-for-150
NVDAJun 10, 202410-for-110
WMTFeb 26, 20243-for-13
SHOPJun 29, 202210-for-110
DXCMJun 13, 20224-for-14
AMZNJun 6, 202220-for-120
AAPLAug 31, 20204-for-14
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
Run am yourself

The latest one for the list na NFLX, wey go 10-for-1 on Nov 17, 2025. Before am, SMCI split 10-for-1 and AVGO split 10-for-1. Cluster of ten-figure names wey split within short time fit look like milestone. But compared with the 240 forward splits wey market record for 2025 alone, the famous ones na small rounding error. Whether split worth acting on na different question from how often splits dey happen. Our does stock go up after split study answer that question directly.

FAQ

How many times stocks dey split?

Every year dey bring hundreds of each type. For 2025, record show 240 forward splits and 1038 reverse splits. The number don remain within that range for the years wey follow 2016.

Reverse splits dey happen pass forward splits?

Yes, by wide margin. Since 2016, record get 7939 reverse splits against 1952 forward splits. Reverse splits dey common for the low-priced side of the market, where stock dey raise im quoted price to meet exchange listing minimum.

Which stock-split ratio dey most common?

Among forward splits, 2-for-1 na the most common, with 538 on record since 2016. Reverse splits most times dey run 1-for-10, wey mean much sharper compression.

Stock splits dey create or destroy value?

Neither. Split dey multiply the number of shares and divide the price by the same factor. So, the company market value and the value of each holder’s stake no change. Na change of units, no be change of value.

Why companies dey do reverse stock splits?

Most times, na to raise low share price above exchange minimum-price listing requirement, wey often dey around $1. A 1-for-10 reverse split dey turn ten shares into one and multiply the quoted price ten times. Na why reverse splits dey happen several times more than forward splits: the low-priced, at-risk side of the market full ground.


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