{"slug":"do-stock-splits-change-your-dividend","qid":"split_ratios","label":"Most recent forward split at ten large dividend payers","post_title":"Do Stock Splits Change Your Dividend?","post_url":"/blog/do-stock-splits-change-your-dividend#q-split_ratios","columns":["ticker","effective_on","new_shares_per_old_share"],"rows":[{"ticker":"AVGO","effective_on":"July 15, 2024","new_shares_per_old_share":10},{"ticker":"NVDA","effective_on":"June 10, 2024","new_shares_per_old_share":10},{"ticker":"AAPL","effective_on":"August 31, 2020","new_shares_per_old_share":4},{"ticker":"WMT","effective_on":"February 26, 2024","new_shares_per_old_share":3},{"ticker":"KO","effective_on":"August 13, 2012","new_shares_per_old_share":2}],"shape":"ranking","sql":"SELECT\n    ticker,\n    argMax(concat(monthName(execution_date), ' ', toString(toDayOfMonth(execution_date)), ', ', toString(toYear(execution_date))), execution_date) AS effective_on,\n    round(argMax(toFloat64(split_to) / toFloat64(split_from), execution_date), 2)                                                                  AS new_shares_per_old_share\nFROM global_markets.stocks_splits\nWHERE ticker IN ('AAPL', 'AVGO', 'CSCO', 'HD', 'JNJ', 'KO', 'MSFT', 'NVDA', 'PG', 'WMT')\n  AND split_to > split_from\n  AND execution_date >= '2012-01-01'\n  AND execution_date <= today()\n  AND ticker IN\n  (\n      SELECT DISTINCT ticker\n      FROM global_markets.stocks_dividends\n      WHERE ex_dividend_date >= addYears(today(), -1)\n        AND cash_amount > 0\n  )\nGROUP BY ticker\nORDER BY new_shares_per_old_share DESC, ticker ASC","computed_at":"2026-08-22T04:04:44.894188+00:00","elapsed":0.091578267}