STRASMORE/EXPLORE 2,170 QUERIES

Most recent forward split at ten large dividend payers

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from Do Stock Splits Change Your Dividend?.

as of ranking 5×3read in context →
Most recent forward split at ten large dividend payers — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickereffective_onnew_shares_per_old_share
AVGOJuly 15, 202410
NVDAJune 10, 202410
AAPLAugust 31, 20204
WMTFebruary 26, 20243
KOAugust 13, 20122
Rows × columns
5 × 3
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Most recent forward split at ten large dividend payers, derived from the stored result.
ColumnTypeRangeNotes
ticker text 5 distinct values (AAPL, AVGO, KO…)
effective_on text 5 distinct values
new_shares_per_old_share number 2 to 10 count

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

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 your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisDo Stock Splits Change Your Dividend?
Forward and reverse splits by year across US listings ranking 10×3 Days between declaration, ex-date, record and payable series 16×5 AAPL dividends per share: as reported and split adjusted series 12×4 Completed forward splits of 3-for-1 or larger: selected large-cap names, 2022 to 2026 ranking 12×4 US-listed splits by ratio band, 2021 to mid-2026: the 25% line in the data ranking 5×3 NVDA around its 10-for-1 split: regular-session close and volume, June 3 to June 14, 2024 series 10×4 See all 2,170 queries →