AAPL Dividend History: Splits and Raises
Every AAPL stock split and the running share countseries ·
2026-08-22 · 3×5
AAPL quarterly dividend by year, split adjusted, with the annual stepranking ·
2026-08-22 · 14×3
AAPL dividends paid against free cash flow, by fiscal yearranking ·
2026-08-22 · 13×4
Longest gaps between consecutive AAPL dividend payments, in yearsranking ·
2026-08-22 · 6×4
Every AAPL dividend year, as declared and split adjustedranking ·
2026-08-22 · 15×4
Every AAPL stock split and the running share count
Every AAPL stock split and the running share count
| execution_date | split_ratio | shares_after_split | cumulative_share_count | effective_on |
|---|---|---|---|---|
| 2005-02-28 | 2-for-1 | 2 | 2 | Feb 28, 2005 |
| 2014-06-09 | 7-for-1 | 7 | 14 | Jun 9, 2014 |
| 2020-08-31 | 4-for-1 | 4 | 56 | Aug 31, 2020 |
the exact SQL behind every number
WITH events AS
(
SELECT
id,
any(execution_date) AS split_date,
any(toFloat64(split_to) / toFloat64(split_from)) AS ratio,
concat(toString(toUInt32(any(split_to))), '-for-', toString(toUInt32(any(split_from)))) AS split_ratio
FROM global_markets.stocks_splits
WHERE ticker = 'AAPL'
GROUP BY id
)
SELECT
toString(split_date) AS execution_date,
split_ratio,
round(ratio, 0) AS shares_after_split,
round(exp(sum(log(ratio)) OVER (ORDER BY split_date ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)), 0) AS cumulative_share_count,
formatDateTime(split_date, '%b %e, %Y') AS effective_on
FROM events
ORDER BY split_date
More from this analysisAAPL Dividend History: Splits and Raises
Every AAPL dividend year, as declared and split adjusted
ranking 15×4
→
AAPL quarterly dividend by year, split adjusted, with the annual step
ranking 14×3
→
AAPL dividends paid against free cash flow, by fiscal year
ranking 13×4
→
Longest gaps between consecutive AAPL dividend payments, in years
ranking 6×4
→
See all 2,170 queries →