Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 5, 2026 · refreshed weekly

Stock Dividend vs Cash Dividend, Explained

A stock dividend adds shares and cuts the price to match. A cash dividend moves money out of the company. See what each does to yield and to cost basis.

Stock dividend vs cash dividend comes down to a single question: does anything leave the company? A cash dividend moves money out of the corporate bank account and into yours. A stock dividend moves nothing at all. The company issues extra shares to the people who already own it, the same pie gets cut into more slices, and the price per share falls by the proportion the share count rises.

Stock dividend vs cash dividend: what actually changes

A cash dividend is a per-share amount declared by the board and paid on a set date. Most large US companies pay quarterly. On the pay date the money is out of the company for good, and it appears as an outflow on the cash flow statement. Six household payers show the cadence over the past year.

QueryCash dividends per share over the past year, six household payers
The exact SQL behind every number
SELECT
    ticker,
    count()                 AS payments_last_year,
    round(sum(amount), 2)   AS cash_per_share_usd
FROM
(
    SELECT
        ticker,
        ex_dividend_date  AS ex_date,
        max(cash_amount)  AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM')
      AND ex_dividend_date >= today() - 365
      AND ex_dividend_date <  today()
      AND cash_amount > 0
    GROUP BY ticker, ex_dividend_date
)
GROUP BY ticker
ORDER BY cash_per_share_usd DESC
Run this yourself

JNJ distributed the most cash per share of the six, $5.24 across 4 payment dates. AAPL paid the least per share, $1.05. Per-share amounts do not compare across companies as a rate: a $5 payment on a $300 share is a smaller rate than a $1 payment on a $30 share. Putting price in the denominator is the job of dividend yield.

A stock dividend has no equivalent panel, and the absence is the lesson. Nothing is transferred. The company debits retained earnings, credits share capital, and issues new shares to existing holders in proportion to what they already hold. Every holder owns the same fraction of the same business the moment after as the moment before.

Does a stock dividend increase your dividend yield?

No, and the arithmetic is worth doing once by hand. Take a hypothetical company with 100 million shares at $50, a market value of $5 billion, and a holding of 1,000 of those shares worth $50,000. The company declares a 10% stock dividend.

  • Shares outstanding go from 100 million to 110 million.
  • Your holding goes from 1,000 shares to 1,100 shares.
  • The business is unchanged, the market value stays $5 billion, and the price per share becomes $45.45.
  • Your 1,100 shares at $45.45 are worth $50,000, the figure you started with.
  • Your ownership stake is 0.001% before and 0.001% after.

Yield follows the same path. A board paying $2.00 a year per share normally restates the rate onto the larger count, near $1.82, keeping the total cash out the door identical. $1.82 against $45.45 is 4%. $2.00 against $50.00 is 4%. A yield quote that appears to jump right after a stock dividend is usually a stale per-share rate sitting on top of a new price.

How a stock dividend shows up in a corporate action feed

Market data vendors do not file share distributions next to cash ones. A cash distribution carries a per-share amount and lands in the dividend feed. A share distribution carries a ratio and lands in the split feed, since the mechanics are identical: eleven shares standing where ten stood is an 11-for-10 split and a 10% stock dividend written two ways. That makes the split feed the place to count them. Sorting a decade of US share-ratio actions into bands puts the stock-dividend-sized ones in plain view.

QueryA decade of US share-ratio actions, sorted by size
The exact SQL behind every number
SELECT
    ratio_band,
    count()               AS actions,
    round(avg(ratio), 3)  AS avg_ratio,
    round(min(ratio), 3)  AS smallest_ratio,
    round(max(ratio), 3)  AS largest_ratio
FROM
(
    SELECT
        ratio,
        multiIf(ratio <  1.00, 'Reverse, share count falls',
                ratio <  1.25, 'Stock dividend size, 1.00x to 1.25x',
                ratio <  2.00, 'Split size, 1.25x to 2x',
                ratio =  2.00, 'Two for one',
                               'Larger than two for one') AS ratio_band,
        multiIf(ratio <  1.00, 1,
                ratio <  1.25, 2,
                ratio <  2.00, 3,
                ratio =  2.00, 4,
                               5) AS band_rank
    FROM
    (
        SELECT
            ticker,
            execution_date,
            max(toFloat64(split_to) / toFloat64(split_from)) AS ratio
        FROM global_markets.stocks_splits
        WHERE execution_date >= '2016-01-01'
          AND execution_date <  today()
          AND split_from > 0
          AND split_to   > 0
        GROUP BY ticker, execution_date
    )
)
GROUP BY ratio_band
ORDER BY min(band_rank)
Run this yourself

The first band, Reverse, share count falls, holds 7771 actions where the share count shrinks rather than grows. The band the table labels Stock dividend size, 1.00x to 1.25x holds 2300, at an average of 1.04 new shares for every old one, and the smallest of them ran at 1. Those are the ratios a company describes in its own announcement as a stock dividend or a bonus issue rather than a split.

QueryShare distributions and splits by year, US listings
The exact SQL behind every number
SELECT
    toString(toYear(execution_date))     AS year,
    countIf(ratio > 1 AND ratio < 1.25)  AS stock_dividend_size,
    countIf(ratio >= 1.25)               AS split_size,
    countIf(ratio < 1)                   AS reverse_split
FROM
(
    SELECT
        ticker,
        execution_date,
        max(toFloat64(split_to) / toFloat64(split_from)) AS ratio
    FROM global_markets.stocks_splits
    WHERE execution_date >= '2016-01-01'
      AND execution_date <  toStartOfYear(today())
      AND split_from > 0
      AND split_to   > 0
    GROUP BY ticker, execution_date
)
GROUP BY year
ORDER BY year
Run this yourself

In 2025, the most recent complete year in the set, US listings recorded 185 distributions in stock-dividend territory, 239 splits of 1.25x or larger, and 1036 reverse splits.

US accounting practice draws a line near 25% of shares outstanding. Below it, the distribution is booked as a stock dividend, with retained earnings reduced by the market value of the new shares. At or above it, the same event is recorded as a split, at par value. For a holder the visible mechanics are the same on both sides of that line: an ex-distribution date, a share count that steps up, a price history that gets restated. What a stock split does to your shares walks through those mechanics, and does a stock go up after a split takes on the question that follows.

What are 送股 and 转增 in US terms?

Chinese-language market writing splits distributions more finely than English does, and the mapping is worth having straight if you read both.

  • 股息: cash paid per share. This is a cash dividend in the US sense.
  • 现金分红: the act of distributing profit to holders in cash. Same instrument, wider word.
  • 送股: bonus shares issued out of retained earnings, the profits a company has kept rather than paid out. This is a stock dividend proper.
  • 转增: new shares capitalised out of the capital reserve (资本公积) instead of retained earnings. The closest English terms are bonus issue and scrip issue.

送股 and 转增 differ in which equity account is debited: retained earnings for the first, capital reserve for the second. Neither one changes what a holder owns. Ratios in Chinese listings also run far larger than US ones. A 10送10 distribution doubles the share count, well past the line US practice treats as a split, and vendor feeds record it that way.

Cost basis: what happens to the number you paid

A cash dividend is income in the year it is received in most tax systems, and the cost basis of the shares does not move.

A pro rata stock dividend in the same class of stock is generally not income at receipt under US rules. The basis already there is spread across the larger share count. Hypothetically: 1,000 shares bought at $40 carry $40,000 of basis, and after a 10% stock dividend that same $40,000 sits across 1,100 shares, about $36.36 each. Tax arrives on sale, and the holding period of the new shares generally tracks the shares they came with.

Now the caveat, and it is a real one. Everything past 'in most tax systems' is jurisdiction-specific: whether a share distribution is taxed on issue, at what rate, and how a cash distribution from a foreign payer is treated at source and again at home. Some countries tax bonus shares on receipt. Others tax nothing until disposal. A US-listed payer sending cash to a non-US holder meets a withholding layer before the money lands, which is its own subject in dividend withholding tax for non-US investors. Read this section as the list of questions to ask. The answer comes from someone who files where you file.

Who receives either distribution is set by the same calendar. The ex-date decides it, not the pay date, and record date vs ex-dividend date walks the sequence.

Where a rising cash dividend comes from

A per-share cash rate rises one way: the board declares a higher one. Share counts do not do it.

QueryCoca-Cola cash dividends per share, by year of ex-date
The exact SQL behind every number
SELECT
    toString(toYear(ex_date))  AS year,
    count()                    AS payments,
    round(sum(amount), 2)      AS cash_per_share_usd
FROM
(
    SELECT
        ex_dividend_date  AS ex_date,
        max(cash_amount)  AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker = 'KO'
      AND ex_dividend_date >= '2015-01-01'
      AND ex_dividend_date <  toStartOfYear(today())
      AND cash_amount > 0
    GROUP BY ex_dividend_date
)
GROUP BY year
ORDER BY year
Run this yourself

Coca-Cola's ex-dividend dates in 2015 carried $1.32 per share in total. By 2025 the total across 4 payment dates was $2.04. Each step up came from a declared quarterly rate, never from a share distribution. The share of profit funding that rate is measured by the dividend payout ratio, and a one-off top-up outside the schedule is a special dividend instead of a change in the rate.

FAQ

Is a stock dividend the same as a stock split?

Mechanically yes, legally not quite. Both multiply the share count and divide the price by the same factor, and both land in the split feed. The difference sits in the accounting entry and in size: distributions under roughly 25% of shares outstanding are booked as stock dividends, larger ones as splits.

Does a stock dividend increase the value of my holding?

No. The share count rises and the price per share falls by a matching proportion, leaving the market value of the position and your percentage of the company unchanged at the distribution. What the price does over the following weeks is a separate question about the business.

Does a stock dividend raise the dividend yield?

No. Yield is annual cash per share divided by price, and a stock dividend cuts both the per-share rate and the price by the same factor. A yield figure that jumps right after a distribution is usually an old per-share rate quoted against a new price.

Do I pay tax on a stock dividend?

In the US a pro rata stock dividend in the same class of shares is generally not taxed on receipt, and the existing cost basis is spread over more shares until you sell. Other countries treat bonus shares differently, and some do tax them on issue, so the answer depends on where you file.

Why would a company pay a stock dividend instead of cash?

A stock dividend keeps cash inside the business while still marking a distribution date for holders. Companies also use them to lower the price per share and widen the pool of buyers.


Every panel here carries the exact SQL that produced it, expandable underneath the table. To run the same counts on a different payer or a different year, ask the question in plain English on the Strasmore terminal.

#dividends#stock dividend#bonus shares#corporate actions#cost basis