Do Stock Splits Change Your Dividend?
AAPL dividends per share: as reported and split adjustedseries ·
2026-08-22 · 12×4
Most recent forward split at ten large dividend payersranking ·
2026-08-22 · 5×3
Forward and reverse splits by year across US listingsranking ·
2026-08-22 · 10×3
Days between declaration, ex-date, record and payableseries ·
2026-08-22 · 16×5
How Annual Dividend Per Share Is Calculated
Declared amount against split-restated amount, per quarterseries ·
2026-08-14 · 56×4
Eight quarterly declarations, ex-date and pay dateseries ·
2026-08-14 · 8×4
Trailing four payments against the indicated rate, by quarterseries ·
2026-08-14 · 16×4
One set of payments, four annual dividend totalsranking ·
2026-08-14 · 4×3
Ex-date to pay date across US cash dividends, by yearranking ·
2026-08-14 · 7×4
AAPL dividends per share: as reported and split adjusted
AAPL dividends per share: as reported and split adjusted
| ex_date | ex_date_pretty | as_reported_usd | split_adjusted_usd |
|---|---|---|---|
| 2019-02-08 | February 8, 2019 | 0.73 | 0.1825 |
| 2019-05-10 | May 10, 2019 | 0.77 | 0.1925 |
| 2019-08-09 | August 9, 2019 | 0.77 | 0.1925 |
| 2019-11-07 | November 7, 2019 | 0.77 | 0.1925 |
| 2020-02-07 | February 7, 2020 | 0.77 | 0.1925 |
| 2020-05-08 | May 8, 2020 | 0.82 | 0.205 |
| 2020-08-07 | August 7, 2020 | 0.82 | 0.205 |
| 2020-11-06 | November 6, 2020 | 0.205 | 0.205 |
| 2021-02-05 | February 5, 2021 | 0.205 | 0.205 |
| 2021-05-07 | May 7, 2021 | 0.22 | 0.22 |
| 2021-08-06 | August 6, 2021 | 0.22 | 0.22 |
| 2021-11-05 | November 5, 2021 | 0.22 | 0.22 |
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
More from this analysisDo Stock Splits Change Your Dividend?
Days between declaration, ex-date, record and payable
series 16×5
→
Forward and reverse splits by year across US listings
ranking 10×3
→
Most recent forward split at ten large dividend payers
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 →