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

Do Stock Splits Change Your Dividend?

Do stock splits change your dividend? A forward split divides the per-share payout by the same ratio as the price, so your cash and yield hold steady.

Stock splits change your dividend per share, and they change nothing about the cash you collect. A forward split divides the declared per-share payout by the same ratio it divides the price, then hands you that many more shares, so the quarterly cash and the yield on your position land in exactly the same place. A dividend raise announced near a split is a separate board decision that happens to arrive at the same time.

Two things around this genuinely trip people up: the calendar of dates that brackets a split, and the way most published dividend tables quietly rewrite every historical amount. This page takes both apart, alongside the mechanics of when a stock split takes effect.

Do stock splits change your dividend payment?

No. A split changes the unit of measurement and leaves the value of your position alone. In a 4-for-1 forward split the company issues three extra shares for every one outstanding, the share price is divided by four on the effective date, and the declared dividend rate per share is divided by four alongside it. Your position is worth what it was worth the previous session, and it produces the same cash on the next payment date.

The dividend yield is unchanged for the same reason. Yield is annual dividend per share divided by price per share, and a forward split divides the top and the bottom of that fraction by the identical number. Annual dividend per share is the figure that gets restated. The annual dividend on your whole position is not.

All of it runs off one number: the ratio. The panel below takes ten large names that have paid a dividend in the past year and returns the most recent completed forward split at each, with the ratio written as new shares received for every old share held.

QueryMost recent forward split at ten large dividend payers
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 this yourself

5 of the ten have carried out a forward split since 2012, and each row is that company's most recent one. AVGO holds the largest ratio in the group at 10 new shares per old share, effective July 15, 2024. Its declared quarterly rate per share was divided by that same figure on that date. KO sits at the other end of the panel at 2. Holders of either name collected the same cash the quarter after as the quarter before. Our upcoming stock splits page tracks effective dates that have already been announced.

A 4-for-1 split, worked through both views

Take a hypothetical holding: 100 shares of a company at $200, paying $0.24 per share each quarter. No real company is involved here. The arithmetic is the point.

Before the split, one quarter pays 100 times $0.24, or $24.00. Four quarters of that is $96.00, a yield of $0.96 of annual dividend against a $200 price, or 0.48%.

The board declares a 4-for-1 split. On the effective date the position becomes 400 shares at $50 and the quarterly rate is restated to $0.06. One quarter now pays 400 times $0.06, or $24.00 again. The annual total is $96.00 again, and the yield is $0.24 against $50, still 0.48%.

Now look at that same history through the two lenses a data provider can offer.

  • As reported: the release covering the pre-split quarter says $0.24 per share, and the next release says $0.06.
  • Split adjusted: the provider rewrites the pre-split $0.24 as $0.06, so the series reads $0.06, $0.06, $0.06, $0.06 with no step in it.

Both describe identical cash. The as-reported view preserves what was announced at the time, which is what you want when checking an old filing. The split-adjusted view preserves comparability, which is what a chart of dividend growth needs. Trouble starts when someone takes one number from each view and subtracts.

Why old dividend amounts do not match a screener today

Most dividend histories online are split adjusted all the way back, and many never say so on the page. The panel below sets the two columns side by side for AAPL across the forward split listed for it above, over a fixed window of ex-dividend dates from 2019 through 2021.

QueryAAPL dividends per share: as reported and split adjusted
The exact SQL behind every number
SELECT
    toString(ex_dividend_date)                                                                                                       AS ex_date,
    concat(monthName(ex_dividend_date), ' ', toString(toDayOfMonth(ex_dividend_date)), ', ', toString(toYear(ex_dividend_date)))     AS ex_date_pretty,
    round(toFloat64(max(cash_amount)), 4)                                                                                            AS as_reported_usd,
    round(toFloat64(max(split_adjusted_cash_amount)), 4)                                                                             AS split_adjusted_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND ex_dividend_date >= '2019-01-01'
  AND ex_dividend_date <  '2022-01-01'
  AND cash_amount > 0
  AND split_adjusted_cash_amount > 0
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
Run this yourself

Read the two series against each other. On February 8, 2019 the as-reported rate was $0.73 per share, and that same payment appears in the split-adjusted column as $0.1825. The step sits entirely in the as-reported column: $0.82 on August 7, 2020, then $0.205 on November 6, 2020, the first ex-dividend date after the split took effect. The split-adjusted column reads $0.205 on the earlier of those two dates and $0.205 on the later, a flat line straight through.

The share count on the far side of that date rose by the same factor the per-share rate fell by, and the cash per quarter came out the same on both sides. By November 5, 2021 the two columns agree again at $0.22 and $0.22, with no later split to restate them. It is the convention behind split-adjusted price history, applied to the payout instead of the close, and our AAPL dividend history page states the basis it uses.

The working rule: before comparing a dividend figure from one source against one from another, check whether the company has split in between. If it has, one of the two numbers has been rewritten.

Declaration, record and payable dates around a split

Four dates govern any single dividend, and a split effective date can land between any two of them.

  • Declaration date: the board announces the amount and the schedule.
  • Ex-dividend date: the first session on which a buyer of the stock does not receive that payment.
  • Record date: the date the company reads its shareholder register.
  • Payable date: the day the cash reaches your account.

The panel below measures the real spacing between them on AAPL's dividends over the past four years.

QueryDays between declaration, ex-date, record and payable
The exact SQL behind every number
SELECT
    toString(ex_dividend_date)                                                                                                   AS ex_date,
    concat(monthName(ex_dividend_date), ' ', toString(toDayOfMonth(ex_dividend_date)), ', ', toString(toYear(ex_dividend_date))) AS ex_date_pretty,
    dateDiff('day', max(declaration_date), ex_dividend_date)                                                                     AS days_declared_before_ex,
    dateDiff('day', ex_dividend_date, max(record_date))                                                                          AS days_ex_to_record,
    dateDiff('day', ex_dividend_date, max(pay_date))                                                                             AS days_ex_to_pay
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND ex_dividend_date >= addYears(today(), -4)
  AND cash_amount > 0
  AND declaration_date > '1970-01-01'
  AND record_date > '1970-01-01'
  AND pay_date > '1970-01-01'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
Run this yourself

Across 16 payments the announcement runs well ahead of the ex-date, 11 days ahead in the most recent row, dated August 10, 2026. The gap between the ex-dividend date and the record date, in days, measures 3 in the earliest row and 0 in the latest, following the move to T+1 settlement in May 2024. Cash reaches the account 3 days after the ex-date in that most recent cycle.

Where does a split fit into that? The amount is fixed in dollars per share at the declaration. If the split takes effect before that dividend's record date, the register already shows the larger share count when it is read, and the restated per-share rate is applied to it. If the split takes effect after the record date, the payment goes out on the old share count at the old rate. Both sequences pay the same total. Shares sold in the window between a split's record date and its effective date settle under the due bill convention, the same machinery the ex-dividend date uses for the dividend itself.

What a reverse split does to your dividend

A reverse split runs the identical arithmetic backwards. In a 1-for-10 reverse split, ten old shares become one new share, the price is multiplied by ten, and any declared per-share dividend is multiplied by ten. A holder of 500 shares collecting $0.02 a quarter ends up with 50 shares collecting $0.20 a quarter, and the cash is $10 either way.

Two differences are worth knowing. Reverse splits cluster at companies that pay no dividend at all, so the question often never comes up. Fractional shares left over from a reverse split are commonly cashed out at the prevailing price, which shrinks the position by that fraction and the future payment along with it.

The panel below counts splits in each direction per calendar year across US listings, through the last complete year.

QueryForward and reverse splits by year across US listings
The exact SQL behind every number
SELECT
    toString(toYear(execution_date))  AS year,
    countIf(split_to > split_from)    AS forward_splits,
    countIf(split_to < split_from)    AS reverse_splits
FROM
(
    SELECT
        execution_date,
        ticker,
        max(split_from) AS split_from,
        max(split_to)   AS split_to
    FROM global_markets.stocks_splits
    WHERE execution_date >= addYears(toStartOfYear(today()), -10)
      AND execution_date <  toStartOfYear(today())
      AND ticker NOT IN ('SPCX')
    GROUP BY execution_date, ticker
)
GROUP BY year
ORDER BY year
Run this yourself

In 2025 the record shows 423 forward splits and 1036 reverse splits, over the 10 calendar years the panel covers. Both directions are counted the same way here, from the same records.

FAQ

Do you get more dividend money after a stock split?

No. The per-share amount is divided by the split ratio at the same moment your share count is multiplied by it. A 3-for-1 split turns 100 shares paying $0.30 into 300 shares paying $0.10, and both pay $30.

Does a stock split change the dividend yield?

No. Yield is annual dividend per share divided by price per share, and a forward split divides both of those numbers by the same ratio. The yield on your position is identical the day after.

Why does an old press release show a different dividend than my screener?

Most dividend histories restate past payments on a split-adjusted basis, so a company that has split 4-for-1 shows its older payments at a quarter of the amount announced at the time. The announced figure is not wrong. It sits on a different basis.

If a company splits before the payable date, do I still get the dividend?

Yes. A declared dividend is an obligation the company already owes. A split changes how many shares that obligation is spread across, and it leaves the total alone.

What happens to my dividend after a reverse split?

The per-share amount is multiplied by the reverse ratio while your share count is divided by it. A 1-for-10 reverse split takes 1,000 shares paying $0.05 to 100 shares paying $0.50, and both pay $50.


Every panel here carries the exact SQL that produced it. Expand one to see how each number was counted. To pull a company's dividend history on either basis, ask for it in plain English on the Strasmore terminal.