What Is a Reverse Stock Split? Real Examples
What a reverse stock split is, how the share math works, what happens to fractional shares, and real examples measured from 2026's split records.
A reverse stock split consolidates a company's existing shares into a smaller number of higher-priced shares: in a 1-for-10 reverse split, every 10 shares you own become 1, the price per share is multiplied by 10, and the total value of your position is unchanged. It is the mirror image of a forward split, where one share becomes several cheaper ones. Reverse splits are also far more common than their headline-grabbing forward cousins — 80% of the US stock splits executed in 2026 ran in reverse — and every number below is measured from real corporate-action records, with the exact SQL one click away.
What does a reverse stock split do to your shares?
On the execution date, the company replaces every batch of old shares with a smaller number of new shares, and the share price adjusts by the same factor. Walk through one hypothetical: you hold 200 shares of a stock trading at $0.60 — a $120 position. The company executes a 1-for-20 reverse split. You now hold 10 shares priced near $12.00 — still a $120 position. Your percentage ownership of the company is identical, the company's market capitalization is unchanged, and nothing about the underlying business is different the morning after.
What does change is the share count. Shares outstanding shrink by the split factor, and with them the stock's float — the portion of those shares actually available to trade. Fewer shares at a higher price, same company.
The notation trips people up, and it is worth getting right. A split is written new-for-old. A 1-for-20 reverse split turns every 20 old shares into 1 new share; a 4-for-1 forward split turns every 1 old share into 4. When the first number is smaller than the second, the split runs in reverse.
What happens to fractional shares in a reverse split?
Share counts rarely divide evenly. Hold 45 shares through a 1-for-10 reverse split and the arithmetic produces 4.5 new shares — and most companies do not issue fractions. The split announcement spells out the treatment, and there are two standard ones: cash in lieu, where the company pays out the market value of the fractional share, or rounding up to the next whole share. When the announcement specifies cash in lieu, there is a practical consequence: a reverse split can force a small sale you never placed, with the tax paperwork to match — and holders of very small positions can see the whole stub converted. Take 5 shares into a 1-for-10 split: that is 0.5 of a new share, which under cash in lieu arrives as cash, not stock, while under round-up terms the same holder comes out with 1 whole share. Which treatment applies is set by each company's announcement, so check it before the execution date.
Why do companies do reverse stock splits?
The reason companies most often state in their own announcements is exchange listing compliance. Nasdaq and the NYSE both hold listed stocks to a $1.00 minimum price standard, with different tests: on Nasdaq, a closing bid price below $1.00 for 30 consecutive business days brings a deficiency notice, while the NYSE measures the average closing price over a 30-trading-day period against the same $1.00 line. Either way, falling short starts a countdown toward delisting. A reverse split raises the quoted price by arithmetic alone, and split announcements routinely state the aim in exactly those words: “to regain compliance with the minimum bid price requirement.”
Other stated reasons appear in filings as well: minimum-price rules at some institutional investors and index providers, broker restrictions on very-low-priced stocks, and the plain optics of a higher share price.
None of this changes the underlying business. The mechanics are value-neutral, and the classic candidate is a stock trading near or below the $1.00 listing threshold — a description of the group the listing rules single out, not a prediction about any single stock.
How common are reverse stock splits? The 2026 count
Stock splits feel rare — a household name announces a forward split every year or two and it makes headlines for a week. The corporate-action records tell a different story.
The exact SQL behind every number
SELECT
countIf(adjustment_type = 'reverse_split') AS reverse_splits,
countIf(adjustment_type = 'forward_split') AS forward_splits,
round(100.0 * countIf(adjustment_type = 'reverse_split')
/ greatest(countIf(adjustment_type IN ('reverse_split', 'forward_split')), 1), 1) AS reverse_pct_of_splits
FROM global_markets.stocks_splits
WHERE toYear(execution_date) = 2026
AND execution_date <= today()In 2026, US markets executed 625 reverse splits against 156 forward splits — 80% of all executed splits ran in reverse. Month by month, the order never flips:
The exact SQL behind every number
SELECT
formatDateTime(toStartOfMonth(execution_date), '%Y-%m') AS month,
countIf(adjustment_type = 'reverse_split') AS reverse_splits,
countIf(adjustment_type = 'forward_split') AS forward_splits,
round(countIf(adjustment_type = 'reverse_split')
/ greatest(countIf(adjustment_type = 'forward_split'), 1), 1) AS reverse_per_forward
FROM global_markets.stocks_splits
WHERE toYear(execution_date) = 2026
AND execution_date <= today()
GROUP BY month
ORDER BY monthIn every month of the first half of 2026, reverse splits outnumbered forward splits — January alone recorded 69 reverse splits against 11 forward. Single sessions can stack them up, too:
The exact SQL behind every number
SELECT
countIf(adjustment_type = 'reverse_split') AS reverse_splits,
countIf(adjustment_type = 'forward_split') AS forward_splits
FROM global_markets.stocks_splits
WHERE execution_date = '2026-07-06'On Monday, July 6, 2026, 13 reverse splits took effect at the open, against 0 forward splits. A batch that size can litter unadjusted screens with fake overnight “gainers” — a reverse split multiplies the quoted price without a single trade occurring — and the July 6, 2026 market recap walks through that exact screener trap live.
Do reverse splits outnumber forward splits every year?
2026 is not an outlier. Pull the same count for every year since 2019:
The exact SQL behind every number
SELECT
toYear(execution_date) AS year,
countIf(adjustment_type = 'reverse_split') AS reverse_splits,
countIf(adjustment_type = 'forward_split') AS forward_splits,
round(countIf(adjustment_type = 'reverse_split')
/ greatest(countIf(adjustment_type = 'forward_split'), 1), 1) AS reverse_per_forward
FROM global_markets.stocks_splits
WHERE execution_date >= '2019-01-01'
AND execution_date <= today()
GROUP BY year
ORDER BY yearReverse splits outnumbered forward splits in every year of the panel: 606 to 95 in 2019, 491 to 174 in 2021, and 625 to 156 in 2026 — 4 reverse splits for every forward split. The forward splits that dominate the headlines are the exception on the corporate-action calendar, not the rule.
A data note on split types
The corporate-action feed behind these panels records three adjustment types: reverse splits, forward splits, and stock dividends. A handful of famous “splits” were structured as stock dividends — NVIDIA's 2021 4-for-1, for example, is recorded as a stock dividend, while its 2024 10-for-1 is a forward split. The split counts in this post include only records explicitly typed as reverse or forward splits, so stock dividends sit outside both columns.
What are the most common reverse split ratios?
Reverse ratios cluster on round numbers, and the ratio has to clear the arithmetic: a stock trading at $0.10 needs at least a 1-for-10 to reach $1.00, and a deeper consolidation buys more headroom above the threshold. Here is 2026's distribution, counting the standard form in which old shares consolidate into exactly one new share:
The exact SQL behind every number
SELECT
concat('1-for-', toString(split_from)) AS ratio,
count() AS reverse_splits
FROM global_markets.stocks_splits
WHERE adjustment_type = 'reverse_split'
AND toYear(execution_date) = 2026
AND execution_date <= today()
AND split_to = 1
GROUP BY split_from
ORDER BY count() DESC, split_from ASC
LIMIT 10The most common reverse ratio in 2026 is 1-for-10, with 128 executions. Round consolidations dominate the list, and the deep end of the table — ratios that fold 20, 30, or 50 old shares into one — shows up far more often than most investors would guess.
Recent reverse stock split examples
Definitions stick better with dates and ratios attached. The panel below lists the 12 most recent reverse splits in the records, with each ratio written new-for-old:
The exact SQL behind every number
SELECT
execution_date,
ticker,
concat(toString(split_to), '-for-', toString(split_from)) AS ratio,
round(split_from / split_to, 2) AS old_shares_per_new
FROM global_markets.stocks_splits
WHERE adjustment_type = 'reverse_split'
AND execution_date <= today()
AND split_from > split_to
AND ticker != 'SPCX'
ORDER BY execution_date DESC, split_from / split_to DESC, ticker ASC
LIMIT 12Two things stand out in any recent window like this. First, the tickers are rarely household names — the stocks executing reverse splits skew small. Second, the ratios vary widely: the last column shows how many old shares fold into each new one. On the execution morning, each of these stocks opens at a price multiplied by its ratio, and on an unadjusted feed that looks like an enormous overnight jump — the kind of move a relative volume check helps tell apart from genuine trading interest.
Reverse Stock Split FAQ
Is a reverse stock split good or bad?
The split itself is neither: it multiplies the price and divides the share count by the same factor, leaving the value of every position unchanged. Context is what varies — reverse splits are the standard tool for stocks trading near or below exchange minimum-price thresholds, and each company's circumstances differ. The mechanics carry no verdict either way.
Do I lose money in a reverse stock split?
Not from the split's mechanics: 100 shares at $0.50 and 10 shares at $5.00 are both a $50 position, and your percentage ownership is unchanged. The one direct cash effect is fractional shares — if your share count does not divide evenly by the ratio, the leftover fraction is typically paid out as cash rather than stock.
What is a 1-for-10 reverse split?
Every 10 shares you own become 1 share, and the share price is multiplied by 10 — a holder of 1,000 shares at $0.80 comes out with 100 shares at $8.00, the same $800 position. In 2026's records the most common reverse ratio is 1-for-10, with 128 executions.
Why do companies do reverse splits?
The most commonly stated reason is compliance with exchange minimum-price rules: Nasdaq and the NYSE both hold listed stocks to a $1.00 minimum price standard, and split announcements routinely cite regaining compliance as the purpose. Other stated reasons include price minimums at some institutional investors and index providers, and the optics of a higher quoted price.
Every panel above is a stored, inspectable query — expand the SQL under any table to audit it, or point the Strasmore terminal at any ticker's split history and ask the same questions in plain English.